-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.23 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
version = '1.3.1'
from setuptools import setup, find_packages
setup(
name = 'nps_sdk',
packages = find_packages(),
version = version,
description = 'A Python SDK for Ingenico ePayments - NPS LatAm Services',
author = 'Ingenico',
author_email = '[email protected]',
url = 'https://github.com/Ingenico-NPS-Latam/nps-sdk-python',
keywords = ['ingenico', 'payments', 'npssdk', 'nps-sdk'],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules"],
install_requires=['suds-jurko==0.6', 'requests==2.20.0', 'six==1.10.0'],
package_data={ 'nps_sdk': ['wsdl/staging.wsdl',
'wsdl/sandbox.wsdl',
'wsdl/production.wsdl',
'wsdl/development.wsdl'] }
)