20 lines
351 B
TOML
20 lines
351 B
TOML
[tool.poetry]
|
|
name = "dataviz-pro-backend"
|
|
version = "0.1.0"
|
|
description = "DataViz Pro Backend Monorepo"
|
|
packages = [{include = "shared"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
strict = true
|