-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (45 loc) · 1.61 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="twol", # of the PyPI project and package
version="0.8.0",
author="Kimmo Koskenniemi",
author_email="koskenni@gmail.com",
description="Tools for simplified two-level morphology",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/koskenni/twol",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"twol-aligner = twol.aligner:main",
"twol-metric = twol.metric:main",
"twol-multialign = twol.multialign:main",
"twol-table2words = twol.table2words:step1",
"twol-words2zerofilled = twol.words2zerofilled:main",
"twol-zerofilled2raw = twol.zerofilled2raw:main",
"twol-raw2named = twol.raw2named:main",
"twol-comp = twol.twolcomp:main",
"twol-examples2fst = twol.twexamp:main",
"twol-discov = twol.discover:main",
"twol-tester = twol.tester:main",
"twol-lexc2dot = twol.lexc2dot:main",
]
},
include_package_data=True,
python_requires='>=3.8',
install_requires=[
'grapheme',
# 'hfst',
#'hfst==3.15.0.0b0',
'hfst_dev==3.15.0.10b0',
#'TatSu==4.4.0',
'TatSu==5.7.4',
]
)