forked from kmike/django-robokassa
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·44 lines (37 loc) · 1.4 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
42
43
44
#!/usr/bin/env python
# coding: utf-8
from __future__ import unicode_literals
from setuptools import setup
setup(
name='django-robokassa3',
version='1.4',
author='Mikhail Pyrev',
author_email='[email protected]',
packages=['robokassa', 'robokassa.migrations'],
url='https://github.com/mpyrev/django-robokassa',
license='MIT License',
description='Приложение для интеграции платежной системы ROBOKASSA в проекты на Django.',
long_description=open('README.rst').read() + "\n\n" + open('CHANGES.rst').read(),
install_requires=[
'Django>=1.11',
'six',
],
classifiers=(
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Russian',
),
)