forked from iterative/PyDrive2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 757 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 757 Bytes
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
from setuptools import setup
setup(
name='PyDrive2',
version='1.4.5',
author='JunYoung Gwak',
author_email='jgwak@dreamylab.com',
maintainer='DVC team',
maintainer_email='support@dvc.org',
packages=['pydrive2', 'pydrive2.test'],
url='https://github.com/iterative/PyDrive2',
license='Apache License 2.0',
description='Google Drive API made easy. Maintained fork of PyDrive.',
long_description=open('README.rst').read(),
install_requires=[
"google-api-python-client >= 1.2",
"oauth2client >= 4.0.0",
"PyYAML >= 3.0",
"httplib2 <= 0.15.0",
"pyOpenSSL >= 19.1.0"
],
extras_require={
"tests": ["pytest>=4.6.0", "timeout-decorator", "funcy>=1.14"],
},
)