forked from dmort27/panphon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.37 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
from setuptools import setup
setup(name='panphon',
version='0.20.0',
description='Tools for using the International Phonetic Alphabet with phonological features',
url='https://github.com/dmort27/panphon',
download_url='https://github.com/dmort27/panphon/archive/0.19.1.tar.gz',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='David R. Mortensen',
author_email='[email protected]',
license='MIT',
install_requires=['setuptools',
'unicodecsv',
'PyYAML',
'regex',
'numpy>=1.20.2',
'editdistance',
'munkres'],
scripts=['panphon/bin/validate_ipa.py',
'panphon/bin/align_wordlists.py',
'panphon/bin/generate_ipa_all.py'],
packages=['panphon'],
package_dir={'panphon': 'panphon'},
package_data={'panphon': ['data/*.csv', 'data/*.yml']},
zip_safe=True,
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic']
)