-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (30 loc) · 782 Bytes
/
setup.py
File metadata and controls
45 lines (30 loc) · 782 Bytes
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
import sys
from setuptools import setup, find_packages
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')
setup(
name = "v1pysdk",
version = "0.5",
description = "VersionOne API client",
author = "Joe Koberg (VersionOne, Inc.)",
author_email = "Joe.Koberg@versionone.com",
license = "MIT/BSD",
keywords = "versionone v1 api sdk",
url = "http://github.com/mtalexan/VersionOne.SDK.Python.git",
packages = [
'v1pysdk',
],
install_requires = install_requires,
#tests don't work, so ignore them
#tests_require = [
# 'testtools'
#],
#
#test_suite = "v1pysdk.tests",
)