-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.84 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "cortado"
version = "0.1.0"
description = "Consolidated RTAs and corresponding orchestration code"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development",
"Topic :: Utilities"
]
# To become unnecessary with https://github.com/python-poetry/poetry/pull/9135
[tool.poetry]
name = "cortado"
version = "0.1.0"
description = "Consolidated RTAs and corresponding orchestration code"
authors = ["Elastic TRADE team"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12"
# Dependencies for orchestration utils
typer = { version = "^0.12", optional = true }
structlog = { version = "^24.4", optional = true }
ecs-logging = { version = "^2.0.0", optional = true }
rich = { version = "^13.9.1", optional = true}
pyyaml = {version = "^6.0.2", optional = true}
tomli = {version = "^2.0.2", optional = true}
[tool.poetry.group.dev.dependencies]
ruff = "^0.6"
pytest = "^8.3"
typing-extensions = "^4.12"
pyright = "^1.1.381"
[tool.poetry.extras]
utils = ["typer", "structlog", "ecs-logging", "rich", "pyyaml", "tomli"]
[tool.poetry.scripts]
cortado-run-rta = "cortado.rtas._cli:run_rta"
cortado-run-rtas = "cortado.rtas._cli:run_rtas_for_os"
cortado = "cortado.cli:run_cli"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.pyright]
reportMissingTypeStubs = true
reportUnusedCallResult = "error"
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"