-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (21 loc) · 535 Bytes
/
setup.py
File metadata and controls
37 lines (21 loc) · 535 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
from setuptools import setup, find_packages
setup(
name = "v1pysdk",
version = "0.2",
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/VersionOne/v1pysdk",
packages = [
'v1pysdk',
],
install_requires = [
'elementtree',
'testtools',
'iso8601',
'python-ntlm',
],
test_suite = "v1pysdk.tests",
)