-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
31 lines (30 loc) · 1.02 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
from setuptools import setup
def readme():
with open('README.rst', 'r', encoding='utf-8') as f:
return f.read()
setup(name='russtress',
version='0.1.4',
description='Package that helps you to put lexical stress in russian text',
long_description=readme(),
url='https://github.com/MashaPo/russtress',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: Russian',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Text Processing :: Linguistic',
'Intended Audience :: Education'
],
author='Maria Ponomareva, Kirill Milintsevich',
keywords='nlp russian stress linguistic',
author_email='[email protected]',
packages=['russtress'],
install_requires=[
'numpy',
'scipy',
'tensorflow'
],
include_package_data=True,
zip_safe=False)