-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
49 lines (44 loc) · 1.55 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
45
46
47
48
49
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
PACKAGES = [
'payments_redsys',
]
REQUIREMENTS = [
'Django>=1.11',
'django-payments>=0.12.3',
'pyDes>=2.0.0',
'xmltodict',
'zeep',
]
with open('requirements.txt', 'r') as f:
REQUIREMENTS = f.readlines()
setup(
name='django-payments-redsys',
author='AJ Ostergaard',
author_email='[email protected]',
description='A django-payments backend for the Redsys payment gateway',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.5',
url='https://github.com/ajostergaard/django-payments-redsys',
packages=PACKAGES,
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=REQUIREMENTS)