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 + diff --git a/README.md b/README.md index 3f7a382c..303f08ff 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 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' + ] +)