forked from thegetty/crom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.09 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.09 KB
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
from setuptools import setup
import sys
if (sys.version_info[0:2] < (2,7)):
install_requires =['ordereddict', 'future']
else:
install_requires = []
setup(
name = 'cromulent',
packages = ['cromulent'],
package_data = {
'cromulent': ['data/crm_vocab.tsv', 'data/overrides.json',
'data/key_order.json', 'data/linked-art.json', 'data/cidoc-extension.json']
},
test_suite="tests",
version = '0.8.0',
description = 'A library for mapping CIDOC-CRM classes to Python objects',
author = 'Rob Sanderson',
author_email = 'rsanderson@getty.edu',
url = 'https://github.com/thegetty/crom',
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",
]
)