Skip to content

Commit 6e824f9

Browse files
authored
Merge pull request #30 from Adyen/Tests-LibChanges
Added Documentation link to README
2 parents d62d979 + f8eee09 commit 6e824f9

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
*.log
33
*.DS_Store
44
*.pypirc
5-
MANIFEST.in
65
releaseguide.md
7-
setup.cfg
8-
setup.py
6+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ady.payment.client.app_name = "your app name"
3636

3737
## Documentation
3838

39-
Follow the rest our guides from the documentation on how to use this library. [ Insert documentation link here ]
39+
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.
4040

4141
## Licence
4242

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)