forked from Yuego/django-pymorphy2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·52 lines (47 loc) · 1.67 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
#!/usr/bin/env python
from distutils.core import setup
import sys
sys.path.insert(0, '..')
from django_pymorphy2.version import __version__
for cmd in ('egg_info', 'develop', 'build_sphinx', 'upload_sphinx'):
if cmd in sys.argv:
from setuptools import setup
setup(
name='django_pymorphy2',
version=__version__,
author= 'Artem Vlasov',
author_email='[email protected]',
url='https://github.com/Yuego/django-pymorphy2',
download_url='https://github.com/Yuego/django-pymorphy2/archive/%s.tar.gz' % __version__,
description='Django and PyMorphy2 integration',
long_description=open('README.rst').read() + open('AUTHORS.rst').read(),
license='MIT license',
requires=[
'django (>=1.3)',
'pymorphy2 (>=0.7)',
'pymorphy2_dicts',
'six',
],
packages=[
'django_pymorphy2',
'django_pymorphy2.shortcuts',
'django_pymorphy2.templatetags',
],
classifiers=[
'Development Status :: 1 - Alpha',
'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',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
],
)