-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 860 Bytes
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
[tool.poetry]
name = "default"
version = "0.1.0"
description = ""
authors = ["Yannick Aaron Lehr <yannick.lehr@ioki.com>"]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
pre-commit = "^2.20.0"
pylint = "^2.15.3"
black = "^22.8.0"
isort = "^5.10.1"
pytest-cov = "^3.0.0"
coverage = "^6.4.4"
ipykernel = "^6.15.3"
ipynbname = "^2021.3.2"
notebook = "^6.4.12"
toml = "^0.10.2"
nbqa = "^1.5.1"
pyupgrade = "^2.38.2"
mypy = "^0.971"
ipywidgets = "^8.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 132
target-version = ['py37', 'py38']
include = '(src\/scripts\/.*$|\.pyi?$)'
exclude = '''
/(
\.git
| __pycache__
| \.tox
| \.venv
| build
| dist
| docs
| notes
)/
'''
[tool.isort]
profile = "black"
line_length = 100