-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
22 lines (21 loc) · 846 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='fonetika',
version='1.4.9',
url='https://github.com/roddar92/russian_soundex',
author='Daria Rodionova',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
description='Phonetics algorithms (Soundex and Metaphone) for russian, english, sweden, finnish and estonian languages',
long_description=open(join(dirname(__file__), 'README.md')).read(), install_requires=['pymorphy2', 'editdistance'],
long_description_content_type="text/markdown",
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: Russian',
'Natural Language :: Finnish',
'Topic :: Text Processing :: Linguistic'
]
)