Files
port-ui/pyproject.toml
Kevin Veen-Birkenbach 3132aab2a5
Some checks failed
CI / Run security workflow (push) Has been cancelled
CI / Run test workflow (push) Has been cancelled
CI / Run lint workflow (push) Has been cancelled
CI / Publish image (push) Has been cancelled
Release version 1.1.0
2026-03-30 10:47:32 +02:00

45 lines
797 B
TOML

[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "portfolio-ui"
version = "1.1.0"
description = "A lightweight YAML-driven portfolio and landing-page generator."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"flask",
"pyyaml",
"requests",
]
[project.optional-dependencies]
dev = [
"bandit",
"pip-audit",
"ruff",
]
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
include = ["app", "app.*"]
[tool.setuptools.package-data]
app = [
"config.sample.yaml",
"templates/**/*.j2",
"static/css/*.css",
"static/js/*.js",
]
[tool.ruff]
target-version = "py312"
line-length = 88
extend-exclude = ["app/static/cache", "build"]
[tool.ruff.lint]
select = ["E", "F", "I"]