-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 889 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
[tool.poetry]
name = "adventofcode2021"
version = "1.0.0"
description = "My Advent of Code 2021 answers '^^"
authors = ["Pierre-Yves Martin <[email protected]>"]
license = "GPLv3"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
more-itertools = "^8.12.0"
numpy = "^1.21.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.12b0"
pytest-sugar = "^0.9.4"
pytest-pudb = "^0.7.0"
xdoctest = "^0.15.10"
assertpy = "^1.1"
pydocstyle = "^6.1.1"
pylint = "^2.12.2"
plerr = "^2.0.0"
pre-commit = "^2.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--xdoctest"
[tool.black]
target-version = ['py310']
[tool.pylint.messages_control]
max-line-length = 88
[tool.pylint.basic]
good-names = ["x", "y", "z", "t", "i", "j", "k", "ex", "Run", "_"]
[tool.pylint.similarities]
ignore-imports="yes"