-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
60 lines (55 loc) · 1.62 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
tests_require = [
'coverage',
'coveralls'
]
docs_require = [
'Sphinx>=1.3.5',
'recommonmark>=0.4.0',
'sphinx-rtd-theme>=0.1.9',
'sphinxcontrib-napoleon>=0.4.4',
'sphinxcontrib-httpdomain>=1.5.0',
'mock',
]
setup(
name='prov-db-connector',
version='0.5.1',
description='PROV Database Connector',
keywords=[
'provenance', 'graph', 'model', 'PROV', 'PROV-DM', 'PROV-JSON', 'JSON',
'PROV-XML', 'PROV-N'
],
author='DLR, Stefan Bieliauskas, Martin Stoffers',
url='https://github.com/DLR-SC/prov-db-connector',
classifiers=[
'Development Status :: 1 - Planning',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
license="Apache License 2.0",
packages=find_packages(),
package_dir={
'provdbconnector': 'provdbconnector'
},
include_package_data=True,
zip_safe=False,
install_requires=[
"prov==2.0.0",
"neo4j==5.6.0"
],
extras_require={
'test': tests_require,
'dev': tests_require + docs_require,
'docs': docs_require,
},
test_suite='provdbconnector.tests',
)