-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (23 loc) · 922 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
PACKAGES = ['redsys', ]
setup(
name='redsys-256',
description='Generates Redsys form parameters with new hmac sha256 encryption protocol.',
long_description='This package allows to generate the appropriate parameters for new Redsys encryption protocol HMAC SHA256 and validate the MerchantURL notification sent by RedSys, also encrypt with new protocol.',
keywords='redsys hmac sha256 migration 256 python notification online',
author='Alejandro Otero Ortiz de Cosca',
author_email='[email protected]',
url='http://www.aotero.es',
download_url="https://github.com/lexotero/python-redsys",
version='0.2.3',
license='MIT',
provides=[
'redsys'
],
install_requires=[
'pycrypto'
],
packages=PACKAGES,
scripts=[],
)