-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.04 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
[project]
name = "twined-gcp"
version = "0.7.2"
description = ""
authors = [
]
readme = "README.md"
packages = ["functions"]
dependencies = [
"functions-framework (>=3,<4)",
"google-cloud-bigquery (>=3.18.0, <=4)",
"kubernetes (>=31,<32)",
"google-cloud-container (>=2,<3)",
"google-cloud-artifact-registry (>=1,<2)",
]
requires-python = ">=3.13,<4"
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
pre-commit = "^4"
coverage = "^7.6.12"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes.
lint.select = ["E", "F"]
# Ignore E501 line-too-long - see https://docs.astral.sh/ruff/faq/#is-the-ruff-linter-compatible-with-black for why
lint.ignore = ["F405", "E501", "E203", "E731", "N818"]
[tool.ruff.lint.isort]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
force-sort-within-sections = true