-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.2 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
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open('LICENSE') as f:
license = f.read()
setuptools.setup(
name="conllu2xml",
version="1.0.0",
author="Natalia Kuzminykh",
author_email="[email protected]",
description="Converts, clean and parse CoNLL-U files to XML and/or TRF files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nataliakzm/conllu2xml",
license=license,
package_dir={
"conllu2xml": "conllu2xml",
"conllu2xml.conlluparse": "conllu2xml/conlluparse",
"conllu2xml.conlluconvert": "conllu2xml/conlluconvert",
"conllu2xml.ner": "conllu2xml/ner",
},
packages=[
"conllu2xml",
"conllu2xml.conlluparse",
"conllu2xml.conlluconvert",
"conllu2xml.ner",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"argparse",
"regex",
"stanza",
"nltk",
],
python_requires=">=3.8.10",
zip_safe=False,
)