-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·61 lines (56 loc) · 1.68 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
61
#!/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.4.0',
description='PROV Database Connector',
keywords=[
'provenance', 'graph', 'model', 'PROV', 'PROV-DM', 'PROV-JSON', 'JSON',
'PROV-XML', 'PROV-N'
],
author='DLR, Stefan Bieliauskas, Martin Stoffers',
author_email='opensource@dlr.de, sb@conts.de, martin.stoffers@studserv.uni-leipzig.de',
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
license="Apache License 2.0",
packages=find_packages(),
package_dir={
'provdbconnector': 'provdbconnector'
},
include_package_data=True,
zip_safe=False,
install_requires=[
"prov==1.5.3",
"neo4j-driver==1.7.6"
],
extras_require={
'test': tests_require,
'dev': tests_require + docs_require,
'docs': docs_require,
},
test_suite='provdbconnector.tests',
)