-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (27 loc) · 908 Bytes
/
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
from setuptools import setup
import sys
if (sys.version_info[0:2] < (2,7)):
install_requires =['ordereddict', 'future']
else:
install_requires = []
setup(
name = 'getty-pipeline',
packages = ['pipeline'],
test_suite="tests",
version = '0.0.1',
description = 'Getty CIDOC-CRM Pipeline',
author = 'Rob Sanderson',
author_email = '[email protected]',
url = 'https://github.com/thegetty/pipeline',
install_requires=install_requires,
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)