30 lines
685 B
TOML
30 lines
685 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools>=68.0"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "dotgift"
|
||
|
version = "0.0.1"
|
||
|
authors = [{ name = "pdf", email = "git@nixon.mozmail.com" }]
|
||
|
description = "Another Christmas list manager for families"
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.11"
|
||
|
license = { text = "AGPL 3.0" }
|
||
|
dependencies = ["uvloop>=0.17.0", "asyncstdlib>=3.10.8"]
|
||
|
|
||
|
[project.scripts]
|
||
|
dotgift = "dotgift.cli:run"
|
||
|
|
||
|
[project.urls]
|
||
|
homepage = "https://sillyhats.mips.uk/pdf/dotgift"
|
||
|
repository = "https://sillyhats.mips.uk/pdf/dotgift"
|
||
|
|
||
|
[tool.setuptools]
|
||
|
py-modules = ["dotgift"]
|
||
|
|
||
|
[tool.bandit]
|
||
|
exclude_dirs = ["/docs", "/build"]
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 120
|