Skip to content
This repository was archived by the owner on Mar 30, 2023. It is now read-only.

Commit 5e1fb9e

Browse files
author
Jason Costello
committed
Adding dev dependencies + README update
1 parent f436980 commit 5e1fb9e

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,11 @@ release history and usage examples.
1414
pip install hypervector-wrapper
1515
```
1616

17-
Note: requires Python 3.6+
17+
Note: requires Python 3.6+
18+
19+
You can install the development dependencies and run tests with:
20+
21+
```python
22+
pip install -e ".[dev]"
23+
pytest
24+
```

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313
author_email="jason@hypervector.io",
1414
url="https://github.com/hypervectorio/hypervector-wrapper",
1515
packages=find_packages(exclude=["tests"]),
16+
install_requires=[
17+
"requests ~=2.24.0"
18+
],
19+
extras_require={
20+
"dev": [
21+
"pytest >= 3.7",
22+
"responses ~= 0.12.1"
23+
]
24+
},
1625
classifiers=[
1726
"Programming Language :: Python :: 3",
1827
"Programming Language :: Python :: 3.6"

0 commit comments

Comments
 (0)