-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup5.1.py
26 lines (25 loc) · 1009 Bytes
/
setup5.1.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
from setuptools import setup, find_packages
setup(name='HornMorpho',
# version='5.1',
# description='Morphological analyzer/generator for languages of the Horn of Africa',
# author='Michael Gasser',
# author_email='gasser@indiana.edu',
# url='http://homes.soic.indiana.edu/gasser/plogs.html',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Text Processing'
],
# install_requires=["conllu"],
# python_requires='>=3.5',
packages=find_packages("src"),
package_dir={'': "src"},
package_data={'languages':
['eng/*']},
# ['morpho/geez/*']
# },
exclude_package_data={'hm': ['__pycache__/*']
}
)