-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (27 loc) · 1.05 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
#!/usr/bin/env python
#coding: utf-8
from distutils.core import setup
import sys
reload(sys).setdefaultencoding("UTF-8")
setup(
name='django-robokassa',
version='0.9.3',
author='Mikhail Korobov',
author_email='[email protected]',
packages=['robokassa', 'robokassa.migrations'],
url='http://bitbucket.org/kmike/django-robokassa/',
download_url = 'http://bitbucket.org/kmike/django-robokassa/get/tip.zip',
license = 'MIT license',
description = u'Приложение для интеграции платежной системы ROBOKASSA в проекты на Django.'.encode('utf8'),
long_description = open('README.rst').read().decode('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',
),
)