-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.33 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "advent-of-code-2023"
version = "0.1.0"
description = "My solutions for the Advent of Code 2023 in Python using modern tooling"
authors = ["Geert Litjens <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://geertlitjens.nl/advent-of-code-2023"
repository = "https://github.com/GeertLitjens/advent-of-code-2023"
keywords = ["advent of code"]
[tool.poetry.dependencies]
python = ">=3.8.1"
click = ">=8.1.3"
requests = ">=2.28.1"
colorama = ">=0.4.6"
numpy = ">=1.23.5"
[tool.poetry.scripts]
advent-of-code-2023 = "advent_of_code_2023.console:cli"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"
flake8 = ">=6.0.0"
coverage = {extras = ["toml"], version = ">=6.5.0"}
pytest-cov = ">=4.0.0"
isort = ">=5.10.1"
flake8-isort = ">=5.0.3"
flake8-black = ">=0.3.5"
flake8-bugbear = ">=22.10.27"
flake8-bandit = ">=4.1.1"
safety = ">=2.3.3"
mypy = ">=0.991"
types-requests = ">=2.28.11.5"
types-colorama = ">=0.4.15.4"
typeguard = ">=2.13.3"
flake8-annotations = ">=2.9.1"
pytest-env = "^1.1.3"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["advent_of_code_2023"]
omit = ["src/advent_of_code_2023/days/day_template/*"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"