forked from Adyen/adyen-python-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 766 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
from setuptools import setup
setup(
name='Adyen',
packages=['Adyen'],
version='2.2.0',
maintainer='Adyen',
maintainer_email='[email protected]',
description='Adyen Python Api',
long_description="A Python client library for accessing Adyen APIs",
author='Adyen',
author_email='[email protected]',
url='https://github.com/Adyen/adyen-python-api-library',
keywords=['payments', 'adyen', 'fintech'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
]
)