-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (36 loc) · 1.3 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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Religion',
'License :: OSI Approved :: MIT License',
'Natural Language :: Greek',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Text Processing :: Linguistic'
]
setup(
name='angel-tag',
version='0.0.10',
description='An Ancient Greek Morphology Tagger',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://chrisdrymon.com',
author='Chris Drymon',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=['greek', 'ancient greek', 'morphology', 'classics', 'computational linguistics'],
packages=find_packages(),
python_requires='>=3.7',
install_requires=['numpy',
'tensorflow',
'gdown',
'greek_normalisation',
'gensim']
)