forked from mollie/mollie-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 830 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='mollie-api-python',
version='1.1.1',
license='BSD',
packages=find_packages(),
include_package_data=True,
description='Mollie API client for Python',
author='Mollie B.V.',
author_email='info@mollie.nl',
keywords=['mollie', 'payment', 'service', 'ideal', 'creditcard', 'mistercash', 'bancontact', 'sofort',
'sofortbanking', 'sepa', 'bitcoin', 'paypal', 'paysafecard', 'podiumcadeaukaart', 'banktransfer',
'direct debit', 'belfius', 'belfius direct net', 'refunds', 'payments', 'gateway'],
url='https://github.com/mollie/mollie-api-python',
install_requires=[
'requests',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)