python-module/pyproject.toml

35 lines
722 B
TOML
Raw Normal View History

2023-07-31 15:57:05 -07:00
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "${REPO_NAME_SNAKE}"
version = "0.0.1"
authors = [{ name = "${REPO_OWNER_SNAKE}", email = "git@nixon.mozmail.com" }]
description = "${REPO_DESCRIPTION}"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
dependencies = [
"loguru>=0.7.0",
"uvloop>=0.17.0",
"aiopath>=0.6.11",
"asyncstdlib>=3.10.8",
]
[project.scripts]
"${REPO_NAME_SNAKE}" = "${REPO_NAME_SNAKE}.cli:run"
[project.urls]
homepage = "${REPO_LINK}"
repository = "${REPO_LINK}"
[tool.setuptools]
py-modules = ["${REPO_NAME_SNAKE}"]
[tool.bandit]
exclude_dirs = ["/docs", "/build"]
[tool.black]
line-length = 120