forked from recski/tuw-nlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (60 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os
import subprocess
import sys
from setuptools import find_packages, setup
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
from setuptools.command.install import install
class SetupAltoDevelop(develop):
def run(self):
develop.run(self)
class SetupAltoInstall(install):
def run(self):
install.run(self)
class SetupAltoEgg(egg_info):
def run(self):
egg_info.run(self)
setup(
name="tuw-nlp",
version="0.1.0",
description="NLP tools at TUW Informatics",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="NLP graph transformation explainable AI XAI semantic graphs",
url="http://github.com/recski/tuw-nlp",
author="Gabor Recski, Adam Kovacs",
author_email="gabor.recski@tuwien.ac.at,adam.kovacs@tuwien.ac.at",
license="MIT",
install_requires=[
"dict-recursive-update",
"networkx",
"penman",
"stanza==1.3.0",
"nltk",
"graphviz",
"conceptnet-lite",
"pywsd",
"supar",
"amrlib",
"word2number",
"unidecode",
"conllu",
"tabulate",
#"ucca @ git+https://github.com/adaamko/ucca.git#egg=ucca",
],
packages=find_packages(),
include_package_data=True,
cmdclass={
"develop": SetupAltoDevelop,
"install": SetupAltoInstall,
"egg_info": SetupAltoEgg,
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
zip_safe=False,
)