-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
60 lines (49 loc) · 1.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup
import sys
from io import open
VERSION = '0.3'
install_requires = [
'pymorphy2 >=0.8'
]
if sys.version_info < (2, 7):
install_requires.append('backport_collections >=0.1')
if sys.version_info < (3, 4):
install_requires.append('enum34 >=1.0')
setup(
name = 'rutermextract',
packages = ['rutermextract'],
description = 'Term extraction for Russian language',
long_description = open('README.rst', encoding="utf8").read(),
version = VERSION,
author = 'Igor Shevchenko',
author_email = '[email protected]',
license = 'MIT license',
url = 'https://github.com/igor-shevchenko/rutermextract',
download_url = 'https://github.com/igor-shevchenko/rutermextract/tarball/%s' % VERSION,
requires = [
'pymorphy2 (>=0.8)',
'enum34 (>=1.0)',
'backport_collections (>=0.1)'
],
install_requires = install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: Russian',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
],
)