forked from thegetty/crom
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (28 loc) · 1.01 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
from setuptools import setup
import sys
install_requires = ['rdflib', 'PyLD']
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', 'data/crm-profile.json']
},
test_suite="tests",
version = '0.17.2',
description = 'A library for mapping CIDOC-CRM (v7.1) classes to Python objects',
author = 'Rob Sanderson',
author_email = '[email protected]',
url = 'https://github.com/linked-art/crom',
install_requires=install_requires,
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)