-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
64 lines (61 loc) · 2.38 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
62
63
64
#!/usr/bin/env python3
import setuptools
with open("DeTrusty/__version__.py", "r", encoding="utf-8") as ver:
version = ver.read()
version = version[version.find("'")+1:version.rfind("'")]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='DeTrusty',
version=version,
description='DeTrusty - Decentralized and Trustable Query Engine',
license='GNU/GPLv3',
author='Philipp D. Rohde',
author_email='[email protected]',
url='https://github.com/SDM-TIB/DeTrusty',
project_urls={
'Documentation': 'https://sdm-tib.github.io/DeTrusty/',
'Changes': 'https://sdm-tib.github.io/DeTrusty/changelog.html',
'Source Code': 'https://github.com/SDM-TIB/DeTrusty',
'Issue Tracker': 'https://github.com/SDM-TIB/DeTrusty/issues'
},
download_url='https://github.com/SDM-TIB/DeTrusty/archive/refs/tags/v' + version + '.tar.gz',
long_description=long_description,
long_description_content_type="text/markdown",
scripts=['./Scripts/create_rdfmts.py',
'./Scripts/restart_workers.sh'],
packages=[
'DeTrusty',
'DeTrusty.Decomposer',
'DeTrusty.Molecule',
'DeTrusty.Operators',
'DeTrusty.Operators.AnapsidOperators',
'DeTrusty.Operators.BlockingOperators',
'DeTrusty.Operators.NonBlockingOperators',
'DeTrusty.Sparql',
'DeTrusty.Sparql.Parser',
'DeTrusty.Wrapper',
'DeTrusty.Wrapper.RDFWrapper'
],
install_requires=['requests>=2.32.0',
'ply==3.11',
'rdflib>=6.0.0',
'python-dateutil>=2.9.0',
'pyoxigraph>=0.4.0'],
include_package_data=True,
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research'
]
)