Files
advent-of-code-2023/pyproject.toml
2023-12-16 10:29:16 -08:00

18 lines
352 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "advent_of_code"
version = "0.1.0"
dependencies = ["requests"]
[project.optional-dependencies]
test = ["pytest", "types-requests"]
[project.scripts]
advent-of-code-2023 = "advent_of_code.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]