initial (working) version of python client library (including CLI script)

This commit is contained in:
James Walker 2012-01-21 20:27:48 -05:00
parent 8971eba9f9
commit 259a2f2e56
5 changed files with 212 additions and 0 deletions

View file

@ -0,0 +1,12 @@
from distutils.core import setup
setup(name='openphoto',
version='0.1',
description='Client library for the openphoto project',
author='James Walker',
author_email='walkah@walkah.net',
url='https://github.com/openphoto/openphoto-python',
requires=['oauth2'],
packages=['openphoto'],
scripts=['scripts/openphoto'],
)