-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 837 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
26
27
28
29
[tool.poetry]
name = "dealroom-cloud-run-auth"
version = "1.0.0"
description = "Make authorized requests to private services in GCP using a requests-like interface."
authors = ["Dealroom Data <data@dealroom.co>"]
readme = "README.md"
homepage = "https://github.com/dealroom/data-cloud-run-auth"
repository = "https://github.com/dealroom/data-cloud-run-auth"
classifiers = [
"Private :: Do Not Upload",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.15"
requests = "^2.31.0"
google-auth = "^2.23.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
ipython = "^8.16.1"
rich = "^13.6.0"
ruff = "^0.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"