-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (52 loc) · 1.88 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="WISE-core",
version="0.0.1",
author="Mohamed Eldesouki",
author_email="[email protected]",
description="A Natural Language Platform For Querying RDF-Based Graphs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CoDS-GCS/WISE",
# When your source code is in a subdirectory under the project root, e.g.
# `src/`, it is necessary to specify the `package_dir` argument.
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src',
# include=['wise', 'wise.*'], exclude=["evaluation", "word_embedding"]
),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Knowledge Graph :: Natural Language Interface',
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
project_urls={
'Documentation': 'https://github.com/CoDS-GCS/WISE/docs',
# 'Funding': 'https://github.com/CoDS-GCS/WISE/donate/',
'Say Thanks!': 'https://wise.eldesouki.ca/thankyou',
'Source': 'https://github.com/CoDS-GCS/WISE/',
'Tracker': 'https://github.com/CoDS-GCS/WISE/issues',
},
py_modules=["ganswer"],
install_requires=[
"transitions==0.8.0",
"allennlp==0.9.0",
"networkx==2.4",
# "termcolor==1.1.0",
"gensim==3.8.1",
"requests",
"graphviz",
],
package_data={
'sample': ['package_data.dat'],
},
include_package_data=True,
data_files=[('my_data', ['data/data_file'])],
test_suite='tests',
tests_require=[],
)