Skip to content

Commit f8eee09

Browse files
committed
Added setup files for pip
1 parent fdeae6f commit f8eee09

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

setup.cfg

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[bdist_wheel]
2+
3+
[metadata]
4+
description-file = README.md
5+
6+
[egg_info]
7+
tag_build =
8+
tag_date = 0
9+
tag_svn_revision = 0
10+

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from setuptools import setup,find_packages
2+
3+
setup(
4+
name = 'Adyen',
5+
packages = ['Adyen'],
6+
version = '1.1.0',
7+
description = 'Adyen Python Api',
8+
long_description = "Adyen Python Api to build ecommerce and reconciliation apps with Python. Connects to Adyen backend. Requires a 'test' or 'live' account with Adyen.",
9+
author = 'Adyen',
10+
author_email = 'support@adyen.com',
11+
url = 'https://github.com/Adyen/adyen-python-api-library',
12+
download_url = 'https://github.com/Adyen/adyen-python-api-library/archive/1.1.0.tar.gz',
13+
keywords = ['payments', 'adyen', 'fintech'],
14+
classifiers = [
15+
'Development Status :: 4 - Beta',
16+
'Intended Audience :: Developers',
17+
'Topic :: Software Development :: Libraries',
18+
'License :: OSI Approved :: MIT License',
19+
'Programming Language :: Python :: 2.7',
20+
'Programming Language :: Python :: 3.6'
21+
]
22+
)

0 commit comments

Comments
 (0)