forked from mtalexan/VersionOne.SDK.Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.71 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# To upload to PyPi, find the directions here https://packaging.python.org/tutorials/packaging-projects/
import sys
from setuptools import setup
install_requires = ["future", "python-ntlm3", "PyYAML"]
# get our long description from the README.md
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="v1pysdk",
version="0.8.0",
description="VersionOne API client",
# original_author="Joe Koberg (VersionOne, Inc.)",
author="Samuel Bastiat",
# original_author_email="[email protected]",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT/BSD",
keywords="versionone v1 api sdk",
url="http://github.com/s31db/VersionOne.SDK.Python.git",
project_urls={
"Documentation": "http://github.com/s31db/VersionOne.SDK.Python.git",
"Source": "http://github.com/s31db/VersionOne.SDK.Python.git",
"Tracker": "http://github.com/s31db/VersionOne.SDK.Python.git/issues",
},
packages=[
"v1pysdk",
],
include_package_data=True,
install_requires=install_requires,
classifiers=(
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Bug Tracking",
),
# it may work on others, but this is what has had basic testing
python_requires=">=3.10, <4",
tests_require=["testtools", "unittest2"], # so testtools tests are auto-discovered
test_suite="tests",
)