27 lines
501 B
TOML
27 lines
501 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools", "wheel"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "foobar"
|
||
|
description = "A boilerplate template for Python projects."
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.9"
|
||
|
license = {text = "Butlersaurus License"}
|
||
|
dynamic = ["version"]
|
||
|
dependencies = [
|
||
|
# "dependency>=0.0.1"
|
||
|
]
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
lint = [
|
||
|
"pylint>=2.14.5",
|
||
|
"flake8>=5.0.4"
|
||
|
]
|
||
|
test = [
|
||
|
"pytest>=7.1.2"
|
||
|
]
|
||
|
|
||
|
[project.scripts]
|
||
|
foobar = "foobar.__main__:main"
|