-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 914 Bytes
/
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
[tool.poetry]
name = "advent-of-code-2022"
version = "0.1.0"
description = ""
authors = ["Lauri Vuorela <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
httpx = "^0.23.1"
beautifulsoup4 = "^4.11.1"
numpy = "^1.23.5"
termcolor = "^2.1.1"
pandas = "^1.5.2"
shapely = "^2.0.0"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
flake8 = "^6.0.0"
flake8-black = "^0.3.5"
isort = "^5.10.1"
flake8-isort = "^5.0.3"
flake8-pyproject = "^1.2.1"
mypy = "^0.991"
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target_version = ["py310"]
[tool.isort]
profile = "black"
line_length = 120
[tool.flake8]
ignore = ["E501", "W503", "E231", "E203"]
exclude = [".git", "__pycache__", "old", "build", "dist", ".vscode", ".pytest_cache", ".mypy_cache", ".env"]