forked from Yuego/django-fias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·59 lines (53 loc) · 1.65 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import codecs
import sys
from fias.version import __version__
sys.path.insert(0, '..')
PY3 = sys.version_info[0] == 3
extra_requirements = []
if PY3:
extra_requirements = [
'suds-jurko>=0.6',
]
else:
extra_requirements = [
'suds>=0.4',
]
setup(
name='django-fias',
version=__version__,
author='Larisa',
author_email='[email protected]',
url='https://github.com/Barolina/django-fias',
download_url='https://github.com/Barolina/django-fias/archive/{0}.tar.gz'.format(__version__),
description='FIAS Django integration',
long_description=codecs.open('README.rst', encoding='utf8').read(),
license='MIT license',
install_requires=[
'django>=1.7',
'django_select2>=5.3.0',
'rarfile',
'six',
'lxml',
'unrar',
'dbfread>=2.0.0',
] + extra_requirements,
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
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.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)