-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (41 loc) · 1.24 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-oauth-token-manager"
version = "1.0.0"
authors = [{ name = "David Harcombe", email = "[email protected]" }]
description = "API for managing stored OAuth credentials."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = {text = "Apache 2.0"}
dependencies = [
'dataclasses-json>=0.5.2',
'decorator>=4.4.2',
'gcs-oauth2-boto-plugin>=2.7',
'gcsfs>=0.7.2',
'google-api-core>=1.26.1',
'google-api-python-client>=2.0.2',
'google-auth-httplib2>=0.1.0',
'google-auth-oauthlib>=0.4.3',
'google-auth>=1.28.0',
'google-cloud-core>=1.6.0',
'google-cloud-firestore>=2.0.2',
'google-cloud-secret-manager>=2.8.0',
'google-cloud-storage>=1.36.2',
'google-reauth>=0.1.1',
'googleapis-common-protos>=1.53.0',
'httplib2>=0.19.0',
'oauth2client>=4.1.3',
'oauthlib>=3.1.0',
'pytz>=2021.1',
'requests-oauthlib>=1.3.0',
'requests>=2.27.1',
]
[project.urls]
"Homepage" = "https://github.com/googleworkspace/python-oauth-token-manager"
"Bug Tracker" = "https://github.com/googleworkspace/python-oauth-token-manager/issues"