We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5048313 commit 716a7c1Copy full SHA for 716a7c1
MANIFEST
@@ -0,0 +1,3 @@
1
+# file GENERATED by distutils, do NOT edit
2
+hackpad.py
3
+setup.py
hackpad_api/__init__.py
hackpad.py renamed to hackpad_api/hackpad.py
setup.py
@@ -0,0 +1,15 @@
+from distutils.core import setup
+
+setup(name='python_hackpad_api',
4
+ version='beta',
5
+ description='A simple wrapper library for the Hackpad API',
6
+ url='https://github.com/Falicon/Python-Hackpad-API'
7
+ package_dir={'python_hackpad_api': 'hackpad_api'}
8
+ packages=['hackpad_api'],
9
+ install_requires=[
10
+ 'argparse==1.2.1',
11
+ 'httplib2==0.8',
12
+ 'oauth2==1.5.211',
13
+ 'requests==2.2.1',
14
+ 'wsgiref==0.1.2']
15
+ )
0 commit comments