-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
63 lines (54 loc) · 1.88 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
# annexremote Setup
# Copyright (C) 2017 Silvio Ankermann
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of version 3 of the GNU General Public License as published by
# the Free Software Foundation
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
from codecs import open
import versioneer
def readme():
with open('README.md') as f:
return f.read()
setup(
name='drivelib',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Easy access to the most common Google Drive API calls',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/Lykos153/python-drivelib',
author='Silvio Ankermann',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
],
keywords='Google Drive GoogleDrive API',
packages=['drivelib'],
extras_require={
'test': ['coverage'],
},
install_requires=[
'google-api-python-client',
'google-auth-oauthlib',
'google-auth-httplib2',
'google-auth',
'oauth2client',
'expiringdict',
],
)