From 95f12914aa7ce6fe12152d98e364ab90396f7775 Mon Sep 17 00:00:00 2001 From: Aleffio Date: Mon, 17 Jul 2017 10:54:45 +0200 Subject: [PATCH 1/4] Added Documentation link to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f7a382c..7ccfb664 100644 --- a/README.md +++ b/README.md @@ -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 From f25f75cb4a0c654cb0b474801af778d4dfc01491 Mon Sep 17 00:00:00 2001 From: Aleffio Date: Mon, 17 Jul 2017 10:55:47 +0200 Subject: [PATCH 2/4] Added Documentation link to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ccfb664..303f08ff 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ ady.payment.client.app_name = "your app name" ## Documentation -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. +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 From fdeae6f326094708aed004d7ad90f6c6e4ff72a3 Mon Sep 17 00:00:00 2001 From: Aleffio Date: Mon, 17 Jul 2017 11:06:32 +0200 Subject: [PATCH 3/4] updated .gitignore --- .gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c2dbae8f..5eaad933 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,5 @@ *.log *.DS_Store *.pypirc -MANIFEST.in releaseguide.md -setup.cfg -setup.py + From f8eee099061bc9d70ccc031c99481cf77f4cb762 Mon Sep 17 00:00:00 2001 From: Aleffio Date: Mon, 17 Jul 2017 11:07:38 +0200 Subject: [PATCH 4/4] Added setup files for pip --- setup.cfg | 10 ++++++++++ setup.py | 22 ++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..b1a1ddb7 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,10 @@ +[bdist_wheel] + +[metadata] +description-file = README.md + +[egg_info] +tag_build = +tag_date = 0 +tag_svn_revision = 0 + diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..e4257fde --- /dev/null +++ b/setup.py @@ -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' + ] +)