-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.61 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
#!/usr/bin/env python3
from distutils.core import setup
from setuptools import find_packages
VERSION = '0.11.1'
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='shaclapi',
version=VERSION,
description='An API implementing optimizations over SHACL validators.',
long_description=long_description,
long_description_content_type="text/markdown",
license='GNU/GPLv3',
author='Julian Gercke, Philipp D. Rohde, Fabian Johannsen',
author_email='philipp.rohde@tib.eu',
url='https://github.com/SDM-TIB/shaclAPI',
download_url='https://github.com/SDM-TIB/shaclAPI/archive/refs/tags/v' + VERSION + '.tar.gz',
packages=find_packages(exclude='tests'),
install_requires=[
'SPARQLWrapper>=2.0.0',
'requests>=2.32.0',
'SHACL2SPARQLpy>=1.3.0',
'TravSHACL>=1.7.0',
'multiprocessing_logging>=0.3.1',
'regex>=2022.3.15'
],
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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research'
]
)