-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (34 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
""" Setup file for distutils
"""
from distutils.core import setup
import os.path as osp
from setuptools import find_packages
__version__ = None
with open(osp.join('python_gdrive', '__init__.py')) as istr:
for l in istr:
if l.startswith('__version__ = '):
exec(l)
break
setup(
name='python-gdrive',
version=__version__,
author='Tony Sanchez',
author_email='[email protected]',
url='https://github.com/cogniteev/python-gdrive',
download_url='https://github.com/cogniteev/python-gdrive/archive/master.zip',
description='Gdrive REST api client',
packages=find_packages(exclude=['tests']),
license='Apache license version 2.0',
platforms='OS Independent',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Development Status :: 4 - Beta'
],
install_requires='requests>=2.2.1'
)