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

Commit 181f40e

Browse files
author
Jason Costello
committed
Adding more details to setup.py and README
1 parent 31da03b commit 181f40e

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
11
# hypervector-wrapper
22

3-
Python wrapper to access the Hypervector API
3+
Python wrapper to access the Hypervector API, providing easy deserialisation of Hypervector
4+
resources to Python objects for building your data-driven test suite.
5+
6+
## Docs
7+
8+
Full API and wrapper docs are available at [https://docs.hypervector.io](https://docs.hypervector.io), along with
9+
release history and usage examples.
10+
11+
## Installation
12+
13+
```python
14+
pip install hypervector-wrapper
15+
```
16+
17+
Note: requires Python 3.6+

setup.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
from setuptools import setup, find_packages
22

33
setup(
4-
name='hypervector',
4+
name='hypervector-wrapper',
55
version='0.0.1',
66
description='Python wrapper to use the Hypervector API',
7-
author='J. J. A. Costello',
8-
packages=find_packages()
7+
author='Jason Costello, Hypervector Limited',
8+
author_email="jason@hypervector.io",
9+
url="https://github.com/hypervectorio/hypervector-wrapper",
10+
packages=find_packages(exclude=["tests"]),
11+
classifiers=[
12+
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.6"
14+
"Intended Audience :: Developers",
15+
"License :: OSI Approved :: MIT License",
16+
"Operating System :: OS Independent",
17+
"Topic :: Software Development :: Libraries :: Python Modules"
18+
]
919
)

0 commit comments

Comments
 (0)