This repository was archived by the owner on Mar 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +28
-4
lines changed
Expand file tree Collapse file tree 2 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
33setup (
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)
You can’t perform that action at this time.
0 commit comments