Commit initial code.

This commit is contained in:
Joey Payne 2016-05-24 09:34:53 -06:00
commit 9130ff0ab5
8 changed files with 492 additions and 0 deletions

16
setup.py Normal file
View file

@ -0,0 +1,16 @@
from setuptools import setup
setup(
name='PyDrive',
version='0.1.0',
author='Joey Yakimowich-Payne',
author_email='jyapayne@gmail.com',
packages=['drivepy', 'drivepy.test'],
url='https://github.com/jyapayne/DrivePy/',
license='LICENSE',
description='Pythonic Google Drive API Bindings.',
long_description=open('README.md').read(),
install_requires=[
'google-api-python-client >= 1.5.0'
]
)