forked from hltdi/HornMorpho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_anal.py
42 lines (40 loc) · 2.09 KB
/
setup_anal.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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name='HornMorphoAnal',
version='4.1',
description='Morphological analyzer for languages of the Horn of Africa',
author='Michael Gasser',
author_email='[email protected]',
url='http://homes.soic.indiana.edu/gasser/plogs.html',
license="GPL v3",
# install_requires=["yaml>=5.0"],
packages=find_packages("src"),
package_dir={'': "src"},
package_data = {'hm':
['languages/amh/*', 'languages/amh/cas/*',
'languages/amh/fst/*', 'languages/amh/lex/*',
'languages/amh/stat/*', 'languages/amh/data/*',
'languages/amh/pkl/*A.pkl',
'languages/gru/*', 'languages/gru/cas/*',
'languages/gru/fst/*', 'languages/gru/lex/*',
'languages/gru/pkl/*A.pkl',
'languages/tir/*', 'languages/tir/cas/*',
'languages/tir/fst/*', 'languages/tir/lex/*',
'languages/tir/stat/*', 'languages/tir/data/*',
'languages/tir/pkl/*A.pkl',
'languages/tig/*', 'languages/tig/cas/*',
'languages/tig/fst/*', 'languages/tig/lex/*',
'languages/tig/pkl/*A.pkl',
'languages/sgw/*', 'languages/sgw/cas/*',
'languages/sgw/fst/*', 'languages/sgw/lex/*',
'languages/sgw/pkl/*A.pkl',
'languages/som/*', 'languages/som/cas/*',
'languages/som/fst/*', 'languages/som/lex/*',
'languages/som/pkl/*A.pkl',
'languages/orm/*', 'languages/orm/cas/*',
'languages/orm/fst/*', 'languages/orm/lex/*',
'languages/orm/stat/*', 'languages/orm/data/*',
'languages/orm/pkl/*A.pkl',
'docs/horn3_quick.pdf',
'morpho/geez/*']}
)