-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
20 lines (18 loc) · 808 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
setuptools.setup(
name = "charsplit",
version = "0.1",
author = "Don Tuggener",
author_email = "[email protected]",
description = "Splitting compound german words into subwords.",
description_long = "A tool for splitting german compound word into subwords, such as Autobahnraststätte --> Autobahn, Raststätte. Based on the thesis `Tuggener, Don (2016). Incremental Coreference Resolution for German. University of Zurich, Faculty of Arts.`",
url = "https://github.com/dtuggener/CharSplit",
packages=["charsplit"],
include_package_data=True,
scripts = ["charsplit/training.py"],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
)