-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
23 lines (21 loc) · 960 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="streusle",
version="4.5",
author="Nathan Schneider",
author_email="[email protected]",
description="STREUSLE: a corpus with comprehensive lexical semantic annotation (multiword expressions, supersenses)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nert-nlp/streusle",
py_modules=["conllulex2csv", "conllulex2UDlextag", "govobj", "lexcatter", "normalize_mwe_numbering",
"streusvis", "supersenses", "tquery", "UDlextag2json", "conllulex2json",
"csv2conllulex", "json2conllulex", "mwerender", "psseval", "streuseval", "supdate",
"tagging", "tupdate"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)