Skip to content

Commit 716a7c1

Browse files
committed
rework directory strucure; add setup.py
1 parent 5048313 commit 716a7c1

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

MANIFEST

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# file GENERATED by distutils, do NOT edit
2+
hackpad.py
3+
setup.py

hackpad_api/__init__.py

Whitespace-only changes.
File renamed without changes.

setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from distutils.core import setup
2+
3+
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

Comments
 (0)