initial (working) version of python client library (including CLI script)
This commit is contained in:
parent
8971eba9f9
commit
259a2f2e56
5 changed files with 212 additions and 0 deletions
12
setup.py
12
setup.py
|
@ -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'],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue