-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (41 loc) · 1.56 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
"""
Sydres
======
Sydres is a Redsys Client, fork of python-redsys. Original project is available
at https://bitbucket.org/zikzakmedia/python-redsys
This fork presents some modifications in order to add support for Python 3.
If you are using Python 3 and need to use Redsys and are looking for a simple
client library, then Sydres is the package you are looking for.
In the same scenario but while using Python 2, maybe you will prefer to use the
original project (this one has not been used with Python 2).
"""
from setuptools import setup
PACKAGES = ['sydres', ]
PACKAGES_DATA = {'sydres.tests': []}
setup(name='sydres',
description='A client to submit payment orders to the Redsys service.',
long_description=__doc__,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Web Environment",
],
keywords=['redsys', 'sydres'],
author='Alex Barcelo',
author_email='[email protected]',
url="https://github.com/alexbarcelo/sydres",
version='0.2.1',
license='General Public Licence 3',
provides=['sydres'],
install_requires=['pycrypto',],
packages=PACKAGES,
package_data=PACKAGES_DATA,
scripts=[],
test_suite='sydres.tests',
)