forked from ebewe/mangopay2-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 658 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
# to build - python setup.py sdist upload
setup(
name='mangopaysdk',
version='1.5.2',
author='Mangopay (www.mangopay.com)',
author_email='support@mangopay.com',
packages=['mangopaysdk', 'mangopaysdk.entities', 'mangopaysdk.tools', 'mangopaysdk.tools.storages', 'mangopaysdk.types', 'mangopaysdk.types.exceptions'],
url='http://pypi.python.org/pypi/mangopaysdk/',
description='MangoPay API',
long_description=open('README.md').read(),
install_requires=[
"requests>=2.4.3",
"requests-oauthlib>=0.4.0",
"lockfile>=0.9.1"
],
keywords="leetchi api sdk mangopay"
)