-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (32 loc) · 1004 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
27
28
29
30
31
32
33
from distutils.core import setup
setup(
name='SecureSubmit',
version='2.5.7',
author='Heartland Payment Systems',
author_email='[email protected]',
packages=[
'securesubmit',
'securesubmit.applepay',
'securesubmit.entities',
'securesubmit.infrastructure',
'securesubmit.services',
'securesubmit.services.fluent',
'securesubmit.tests',
'securesubmit.tests.applepay',
'securesubmit.tests.fluent',
'securesubmit.tests.payplan',
'securesubmit.tests.certification'
],
scripts=[],
url='http://developer.heartlandpaymentsystems.com/SecureSubmit',
license='LICENSE.txt',
description='SDK for integrating with the Heartland Portico Gateway',
long_description=open('README.txt').read(),
install_requires=[
'xmltodict >= 0.9.0',
'jsonpickle >= 0.6.1',
'enum34 >= 1.1.6',
'urllib3[secure] >= 1.18',
'certifi >= 2016.9.26'
]
)