[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

# from https://peps.python.org/pep-0621/
[project]
name = "$name"
version = "0.1.0"
description = "$description"
readme = "README.md"
requires-python = ">=$minimum_python"
license = { file = "$license_name" }
authors = [{ name = "$author_name", email = "$author_email" }]
maintainers = []
keywords = []
classifiers = [
    "Programming Language :: Python :: 3",
    "Operating System :: OS Independent",
]

dependencies = [

]

[project.optional-dependencies]
test = ["pytest >= 7.0.0"]

[project.urls]
Homepage = "https://example.com"
Source = "https://github.com/example/example"

[project.scripts]


[tool.setuptools.packages.find]
where = ["src"]

[tool.pytest.ini_options]
addopts = "--import-mode=importlib"

[tool.black]
line-length = 79