-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.2 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.2 KB
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
from setuptools import setup
with open("DESCRIPTION.md", "r") as f:
long_description = f.read()
setup (
name = 'pythonDrive',
version = '0.2',
description = 'A Python wrapper for Google Drive API',
author = 'Michael Gathara',
author_email = 'michael@michaelgathara.com',
maintainer = 'Michael Gathara',
maintainer_email = 'michael@michaelgathara.com',
url = 'https://michaelgathara.com/pythondrive',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
packages = ['pythonDrive'],
install_requires = [
"cachetools >= 5.2.0",
"certifi >= 2022.5.18.1",
"charset-normalizer >= 2.0.12",
"google-api-core >= 2.8.1",
"google-api-python-client >= 2.50.0",
"google-auth >= 2.7.0",
"google-auth-httplib2 >= 0.1.0",
"googleapis-common-protos >= 1.56.2",
"httplib2 >= 0.20.4",
"idna >= 3.3",
"protobuf >= 3.20.1",
"pyasn1 >= 0.4.8",
"pyasn1-modules >= 0.2.8",
"pyparsing >= 3.0.9",
"requests >= 2.28.0",
"rsa >= 4.8",
"six >= 1.16.0",
"uritemplate >= 4.1.1",
"urllib3 >= 1.26.9"
]
)