-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
57 lines (55 loc) · 1.82 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name = 'pygraft',
version = '0.0.3',
packages = find_packages(exclude=('docs')),
include_package_data=True,
zip_safe=False,
package_data={
'pygraft': ['examples/template.json', 'examples/template.yml', 'property_checks/combinations.json', 'property_checks/compat_p1p2_inverseof.txt']
},
entry_points={
'console_scripts': [
'pygraft = pygraft.main:main',
],
},
license='MIT',
description = 'PyGraft: Configurable Generation of Schemas and Knowledge Graphs at Your Fingertips',
author = 'Nicolas Hubert',
author_email = '[email protected]',
url = 'https://github.com/nicolas-hbt',
long_description=long_description,
long_description_content_type="text/markdown",
keywords = ['Knowledge Graph',
'Ontology',
'Schema',
'Semantic Web',
'Synthetic Data Generator'],
install_requires=[
'numpy>=1.24.0',
'matplotlib>=3.7.0',
'Owlready2>=0.41',
'rdflib>=6.2.0',
'pyyaml',
'tabulate',
'art',
'tqdm'
],
python_requires='>=3.7',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis'
],
)