28 lines
543 B
TOML
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"
|