-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (37 loc) · 901 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 = "advanced-python"
version = "0.1.0"
description = "Advanced Python programming examples and exercises"
authors = ["Jason Walsh <j@wal.sh>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
ipython = "^8.18.1"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.3"
black = "^23.11.0"
isort = "^5.12.0"
mypy = "^1.6.1"
flake8 = "^6.1.0"
pytest = "^7.4.3"
ipykernel = "^6.27.1"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
disallow_any_generics = true
disallow_subclassing_any = true
warn_redundant_casts = true
warn_unused_ignores = true
no_implicit_reexport = true
strict_optional = true
[tool.pytest]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"