-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.13 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.13 KB
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
from setuptools import setup, find_packages
from setuptools.command.install import install as _install
with open("README.md", "r") as fh:
long_description = fh.read()
extras = {
"tools": [
'spacy>=2.0.0,<3.0.0',
'en_core_web_lg==2.1.0',
]
}
base = [
"nltk",
"thesoulshell>=0.0.2",
"jsontrips>=0.1.34",
"graphviz",
"anytree",
]
if __name__ == '__main__':
setup(
name="pytrips",
version="0.5.22",
author="Rik Bose",
author_email="rbose@cs.rochester.edu",
description="A simple python package for accessing the trips ontology and lexicon",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mrmechko/pytrips",
packages=find_packages(exclude=["test"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
],
install_requires=base,
extras_require=extras,
)