12 lines
371 B
Python
12 lines
371 B
Python
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'],
|
|
)
|