-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (41 loc) · 1.31 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
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("VERSION", "r") as fh:
version = fh.read().strip()
setup(
name="cltl.brain",
description="The Leolani Brain module for knowledge representation",
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/leolani/cltl-knowledgerepresentation",
license='MIT License',
authors={
"Baez Santamaria": ("Selene Baez Santamaria", "[email protected]"),
"Baier": ("Thomas Baier", "[email protected]")
},
package_dir={'': 'src'},
packages=find_namespace_packages(include=['cltl.*', 'cltl_service.*'], where='src'),
package_data={'cltl.brain': ['ontologies/*', 'ontologies/**/*', 'queries/*', 'queries/**/*']},
python_requires='>=3.7',
install_requires=[
'requests~=2.25',
'rdflib~=6.1.1',
'sparqlwrapper~=1.8',
'numpy~=1.20',
'fuzzywuzzy~=0.18',
'nltk~=3.4',
'iribaker~=0.2',
'python-Levenshtein~=0.12',
'importlib_resources~=5.2',
'tqdm~=4.62',
"cltl.combot~=1.0"
],
extras_require={
"service": [
"cltl.combot",
]
},
setup_requires=['flake8']
)