forked from semanticarts/ontology-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (47 loc) · 1.27 KB
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="boris.pelakh@semanticarts.com",
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==2.4.7',
'rdflib~=6.0.0',
'pydot',
'jinja2',
'markdown',
'mdx_smartypants',
'pyyaml',
'jsonschema>=3.2.0',
'SPARQLWrapper>=1.8.5',
'pyshacl~=0.17.0'
],
tests_require=[
'pytest'
],
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.7',
)