-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
32 lines (30 loc) · 1.1 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
"""
Setup for GlobalPayments.Api
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='GlobalPayments.Api',
version='1.0.10',
author='Heartland Payment Systems',
author_email='[email protected]',
packages=[
'globalpayments', 'globalpayments.api', 'globalpayments.api.builders',
'globalpayments.api.builders.validations',
'globalpayments.api.entities',
'globalpayments.api.entities.table_service',
'globalpayments.api.gateways', 'globalpayments.api.payment_methods',
'globalpayments.api.services', 'globalpayments.api.utils'
],
scripts=[],
url='https://developer.heartlandpaymentsystems.com/',
license='LICENSE.md',
description='Global Payments Python SDK for integrating with Heartland and Global Payments merchant services APIs.',
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',
'pyopenssl >= 17.5.0'
])