-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (25 loc) · 995 Bytes
/
setup.py
File metadata and controls
35 lines (25 loc) · 995 Bytes
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
from setuptools import find_packages, setup
if __name__ == '__main__':
setup(
name='python-mystem',
version='0.0.3',
description='Python wrapper for the MyStem morphological analyzer.',
long_description='Python wrapper for the MyStem morphological analyzer.',
url='https://github.com/mvasilkov/python-mystem',
author='Mark Vasilkov',
author_email='mvasilkov@gmail.com',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: Russian',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
keywords='natural-language-processing morphology MyStem Russian Yandex',
packages=find_packages(),
package_data={
'mystem': ['bin/.gitignore'],
},
)