-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (27 loc) · 883 Bytes
/
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
#!/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.1',
author='Ivan Petukhov',
author_email='[email protected]',
packages=[
'django_qiwi', 'django_qiwi.soap',
'django_qiwi.management', 'django_qiwi.management.commands'
],
license = 'MIT license',
description = u'Приложение для работы с qiwi.ru.'.encode('utf8'),
classifiers=(
'Development Status :: 1 - Alpha',
'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',
),
)