|
1 | 1 | from setuptools import find_packages, setup |
2 | | -version = "0.0.15" |
| 2 | +import os.path |
| 3 | +version = "0.2.0" |
| 4 | +ROOT_DIR = os.path.abspath(os.path.dirname(__file__)) |
3 | 5 |
|
4 | 6 |
|
5 | 7 | def readme(): |
6 | 8 | with open("README.md") as f: |
7 | | - print(f.read()) |
8 | | - return f.read() |
| 9 | + long_description = f.read() |
| 10 | + return long_description |
9 | 11 |
|
10 | 12 |
|
11 | 13 | setup( |
12 | | - name='multisafepay', |
| 14 | + name="multisafepay", |
13 | 15 | version=version, |
14 | | - license='MIT', |
| 16 | + license="MIT", |
15 | 17 | long_description=readme(), |
16 | | - long_description_content_type='text/markdown', |
| 18 | + long_description_content_type="text/markdown", |
17 | 19 | packages=find_packages(), |
18 | 20 | include_package_data=True, |
19 | | - description='Python wrapper for the MultiSafepay API', |
20 | | - author='MultiSafepay', |
21 | | - |
22 | | - url='https://github.com/MultiSafepay/multisafepay-python-wrapper', |
| 21 | + description="Python wrapper for the MultiSafepay API. The version prior 18/09/2019 is moved to the " |
| 22 | + "'mini-multisafepay' package.", |
| 23 | + author="MultiSafepay", |
| 24 | + |
| 25 | + url="https://github.com/MultiSafepay/multisafepay-python-wrapper", |
| 26 | + keywords=["multisafepay", "wrapper", "payment","gateway","ideal","paypal","creditcard","gift cards", |
| 27 | + "sofort banking"], |
23 | 28 | install_requires=[ |
24 | | - 'requests', |
| 29 | + "requests", |
25 | 30 | ], |
26 | 31 | classifiers=[ |
27 | | - 'Programming Language :: Python :: 3', |
28 | | - 'Intended Audience :: Developers', |
29 | | - 'License :: OSI Approved :: MIT License', |
| 32 | + "Programming Language :: Python :: 3", |
| 33 | + "Development Status :: 5 - Production/Stable", |
| 34 | + "Intended Audience :: Developers", |
| 35 | + "License :: OSI Approved :: MIT License", |
30 | 36 | ], |
31 | 37 | ) |
0 commit comments