forked from adesnmi/monzo-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
16 lines (15 loc) · 458 Bytes
/
Copy pathsetup.py
File metadata and controls
16 lines (15 loc) · 458 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fromsetuptoolsimportsetup
setup(name='monzo',
version='0.10.0',
description='A python SDK for interacting with the Monzo API.',
url='https://github.com/muyiwaolu/monzo-python',
author='Muyiwa Olu',
author_email='muyiolu94@gmail.com',
license='MIT',
packages=['monzo'],
install_requires=[
'requests==2.20.0',
'requests-oauthlib==1.0.0',
'python-dotenv==0.5.1'
],
)