Commit initial code.
This commit is contained in:
parent
ba9257e42d
commit
9130ff0ab5
8 changed files with 492 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal 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'
|
||||
]
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue