-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 958 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 958 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
30
31
[tool.poetry]
name = "example-service-kueue"
version = "0.2.0"
description = "An example Octue Twined data service using Kueue as the service backend."
authors = ["Marcus Lugg <marcus@octue.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "example_service_kueue"}]
[tool.poetry.dependencies]
python = "^3.11"
octue = "^0.69.0"
[tool.poetry.group.dev.dependencies]
gcp-storage-emulator = "2022.4.13"
pre-commit = "^2.20.0"
[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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"