-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (30 loc) · 1.19 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
# ** GENERATED FILE, DO NOT EDIT! **
import re
import setuptools
with open('kif_lib/version.py', 'r') as fp:
text = fp.read()
VERSION, = re.findall(r"__version__\s*=\s*'(.*)'", text)
with open('README.md', 'r') as fp:
README = fp.read()
setuptools.setup(
name='kif-lib',
version=VERSION,
description='A knowledge integration framework based on Wikidata',
long_description=README,
long_description_content_type='text/markdown',
author='IBM',
author_email='[email protected]',
url='https://github.com/IBM/kif',
license='Apache-2.0',
python_requires='>=3.9',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
package_data={ 'kif_lib': ['py.typed'], 'kif_lib.vocabulary.wd': ['wikidata_properties.tsv'], },
include_package_data=True,
package_dir={'kif_lib': 'kif_lib'},
install_requires=[ 'httpx', 'lark', 'more_itertools', 'networkx', 'rdflib', 'types-networkx', 'typing-extensions', ],
extras_require={
'docs': [ 'myst_nb', 'sphinx-rtd-theme', ],
'tests': ['flake8', 'isort', 'mypy', 'pylint', 'pyright', 'pytest', 'pytest-cov', 'pytest-mypy', 'pyupgrade', 'setuptools', 'tox'],
},
zip_safe=False,
)