Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
*.log
*.DS_Store
*.pypirc
MANIFEST.in
releaseguide.md
setup.cfg
setup.py

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ady.payment.client.app_name = "your app name"

## Documentation

Follow the rest our guides from the documentation on how to use this library. [ Insert documentation link here ]
Follow the rest of our guides from the [documentation](http://adyen.github.io/adyen-python-api-library/index.html) on how to use this library.

## Licence

Expand Down
10 changes: 10 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[bdist_wheel]

[metadata]
description-file = README.md

[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0

22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup,find_packages

setup(
name = 'Adyen',
packages = ['Adyen'],
version = '1.1.0',
description = 'Adyen Python Api',
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.",
author = 'Adyen',
author_email = 'support@adyen.com',
url = 'https://github.com/Adyen/adyen-python-api-library',
download_url = 'https://github.com/Adyen/adyen-python-api-library/archive/1.1.0.tar.gz',
keywords = ['payments', 'adyen', 'fintech'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
]
)