fix #4 - switch to setuptools/distribute so oauth2 installs

This commit is contained in:
James Walker 2012-01-23 00:53:02 -05:00
parent 6db79dae1b
commit 50f9d0b0ab
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View file

@ -1,2 +1,5 @@
*.pyc
build
dist
*.egg-info

View file

@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup
setup(name='openphoto',
version='0.1',
@ -6,7 +6,7 @@ setup(name='openphoto',
author='James Walker',
author_email='walkah@walkah.net',
url='https://github.com/openphoto/openphoto-python',
requires=['oauth2'],
packages=['openphoto'],
install_requires=['oauth2'],
scripts=['scripts/openphoto'],
)