-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
executable file
·36 lines (30 loc) · 1.2 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
#!/usr/bin/env python
#coding: utf-8
from setuptools import setup
import sys
reload(sys).setdefaultencoding("UTF-8")
setup(
name='django-robokassa',
version='1.3',
author='Mikhail Korobov',
author_email='kmike84@gmail.com',
packages=['robokassa', 'robokassa.migrations'],
url='https://bitbucket.org/kmike/django-robokassa/',
license = 'MIT license',
description = u'Приложение для интеграции платежной системы ROBOKASSA в проекты на Django.'.encode('utf8'),
long_description = open('README.rst').read().decode('utf8') + u"\n\n" + open('CHANGES.rst').read().decode('utf8'),
requires=['django (>= 1.3)'],
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Russian',
),
)