Files
advent-of-code-2023/pyproject.toml
2023-12-19 14:18:12 -08:00

28 lines
543 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "advent_of_code"
version = "0.1.0"
dependencies = ["requests", "frozendict"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "types-requests"]
[project.scripts]
advent-of-code-2023 = "advent_of_code.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["advent_of_code"]
omit = ["advent_of_code/__main__.py"]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"