23 lines
518 B
TOML
23 lines
518 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "roc_fnb_website"
|
|
authors = [{ name = "D. Scott Boggs", email = "scott@techwork.zone" }]
|
|
description = "Temporary placeholder for fnb web site"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11" # Self type added
|
|
license = "AGPL-3.0-only"
|
|
dependencies = [
|
|
"flask",
|
|
"gunicorn",
|
|
"structlog",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[project.scripts]
|
|
# Put scripts here
|
|
|
|
[tool.yapf]
|
|
based_on_style = "facebook" |