-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.02 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
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.entity_linking",
description="The Leolani Language module for identifying instances",
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/leolani/cltl-knowledgelinking",
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.entity_linking': ['queries/*']},
python_requires='>=3.7',
install_requires=[
'cltl.brain',
'jellyfish'
],
extras_require={
"service": [
"cltl.combot",
]
},
setup_requires=['flake8']
)