forked from versionone/VersionOne.SDK.Python
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
65 lines (55 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# To upload to PyPi, find the directions here https://packaging.python.org/tutorials/packaging-projects/
import sys
from setuptools import setup
install_requires = [
'future'
]
if (sys.version_info < (3,0)):
# has a different name if supporting Python3
install_requires.append('python-ntlm')
else:
install_requires.append('python-ntlm3')
# get our long description from the README.md
with open("README.md", "r") as f:
long_description = f.read()
setup(
name = "v1pysdk",
version = "0.6.2",
description = "VersionOne API client",
author = "Joe Koberg (VersionOne, Inc.)",
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/mtalexan/VersionOne.SDK.Python.git",
project_urls={
'Documentation': 'http://github.com/mtalexan/VersionOne.SDK.Python.git',
'Source' : 'http://github.com/mtalexan/VersionOne.SDK.Python.git',
'Tracker' : 'http://github.com/mtalexan/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 :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Bug Tracking",
),
# it may work on others, but this is what has had basic testing
python_requires='>=2.5, <4',
tests_require = [
'testtools',
'unittest2' # so testtools tests are auto-discovered
],
test_suite = "tests",
)