- Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
15 lines (14 loc) · 497 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 497 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fromdistutils.coreimportsetup
setup(name='python_hackpad_api',
version='beta',
description='A simple wrapper library for the Hackpad API',
url='https://github.com/Falicon/Python-Hackpad-API',
package_dir={'python_hackpad_api': 'hackpad_api'},
packages=['hackpad_api'],
install_requires=[
'argparse==1.2.1',
'httplib2==0.8',
'requests-oauthlib==0.4.2',
'requests==2.2.1',
'wsgiref==0.1.2']
)