forked from AlexanderYastrebov/django-qiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.06 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
#!/usr/bin/env python
#coding: utf-8
from distutils.core import setup
import sys
reload(sys).setdefaultencoding("UTF-8")
setup(
name='django-qiwi',
version='0.1.3',
author='Ivan Petukhov',
author_email='satels@gmail.com',
packages=[
'django_qiwi', 'django_qiwi.soap',
'django_qiwi.management', 'django_qiwi.management.commands'
],
url='http://satels.blogspot.com/2011/07/django-qiwi-django-soap.html',
download_url = 'https://github.com/satels/django-qiwi/zipball/master',
license = 'MIT license',
description = u'Приложение для работы с qiwi.ru.'.encode('utf8'),
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Russian',
),
install_requires=['soaplib==0.8.1', 'SOAPPy==0.12.5']
)