-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 787 Bytes
/
setup.py
File metadata and controls
21 lines (21 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name='fasterpay-python3',
packages=['fasterpay'],
version='1.2',
license='MIT',
description='Integrate FasterPay into your application using fasterpay-python SDK',
author='FasterPay Integrations Team',
author_email='integration@fasterpay.com',
url='https://github.com/FasterPay/fasterpay-python3',
download_url='https://github.com/FasterPay/fasterpay-python3/releases',
keywords=['FASTERPAY', 'PAYMENTS', 'CARD PROCESSING'],
install_requires=['requests'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)