-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
50 lines (47 loc) · 1.26 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
import setuptools
from onto_tool import VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="onto_tool",
version=VERSION,
author="Boris Pelakh",
author_email="[email protected]",
description="Ontology Maintenance and Release Tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/semanticarts/ontology-toolkit",
packages=setuptools.find_packages(),
install_requires=[
'pyparsing',
'rdflib==7.0.0',
'pydot',
'jinja2',
'markdown2',
'pyyaml==5.2',
'jsonschema==3.2.0',
'SPARQLWrapper==1.8.4',
'pyshacl==0.19.0'
],
tests_require=[
'pytest',
'pytest-cov'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
package_data={
'onto_tool': [
'bundle_schema.yaml'
]
},
entry_points={
"console_scripts": [
"onto_tool = onto_tool.onto_tool:run_tool"
]
},
python_requires='>=3.8',
)