-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1 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
from setuptools import setup, find_packages
with open('README.md') as fp:
README = fp.read()
# TODO check whether the required shell commands are available:
# - hfst-fst2strings, hfst-xfst
# - sort
setup(
name='morle',
version='0.9.0b0',
author='Maciej Janicki',
author_email='[email protected]',
description='A MORphemeLEss MORphology LEarner.',
long_description=README,
long_description_content_type='text/markdown',
url='https://gitlab.com/mmj/morle',
license='MIT',
packages=find_packages('src', exclude=['tests', 'tests.*']),
package_dir={'' : 'src'},
test_suite='tests',
install_requires=[
'hfst >= 3.12.0.0b0',
'keras >= 2.2.0',
'networkx >= 1.10, < 2.0',
'numpy >= 1.15.2',
'pyyaml >= 3.13',
'scipy >= 1.1.0',
'tqdm >= 4.11.2'
],
package_data={
'morle': ['config-default.ini'],
},
entry_points={
'console_scripts': [
'morle = morle.main:main'
]
},
)