mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2026-04-06 21:02:19 +00:00
45 lines
797 B
TOML
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"]
|