forked from kmike/django-robokassa
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·41 lines (38 loc) · 1.49 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
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
from robokassa import get_version
try:
long_description = open('README.rst').read().decode('utf8')
except AttributeError:
long_description = open('README.rst').read()
setup(
name='django-robokassa-payments',
version=get_version(),
author='Mikhail Korobov',
author_email='kmike84@gmail.com',
maintainer='gotlium',
maintainer_email='gotlium@gmail.com',
packages=find_packages(exclude=['demo']),
include_package_data=True,
url='https://github.com/LPgenerator/django-robokassa/',
license='MIT license',
description=u'Приложение для интеграции платежной системы '
u'ROBOKASSA в проекты на Django.'.encode('utf8'),
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Russian',
]
)