forked from aerosense-ai/openfast-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (26 loc) · 977 Bytes
/
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
[tool.poetry]
name = "openfast-service"
version = "0.10.3"
description = ""
authors = ["Marcus Lugg <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
octue = { git = "https://github.com/octue/octue-sdk-python", branch = "rc-kueue" }
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.2"
coverage = "^7.4.3"
gcp-storage-emulator = "2022.06.11"
[build-system]
requires = ["poetry-core"]
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]
known-first-party = ["octue", "app", "fractal", "test", "tests", "twined"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
force-sort-within-sections = true