-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.15 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
55
56
57
[tool.poetry]
name = "astdiff"
version = "0.1.0"
description = ""
authors = ["Henri Nikku <[email protected]>"]
[tool.poetry.scripts]
astdiff = "astdiff.main:app"
plotruntime = "plot_runtime:plot"
[tool.poetry.dependencies]
python = "^3.10"
typer = { extras = ["all"], version = "^0.6.1" }
pytest = "^7.1.3"
parso = "^0.8.3"
more-itertools = "^8.14.0"
typical = "^2.8.0"
[tool.poetry.dev-dependencies]
black = "^22.8.0"
ipykernel = "^6.15.3"
coverage = { extras = ["toml"], version = "^6.4.4" }
flake8 = "^5.0.4"
isort = "^5.10.1"
pre-commit = "^2.20.0"
pytest-benchmark = "^3.4.1"
networkx = "^2.8.7"
pydot = "^1.4.2"
matplotlib = "^3.6.1"
pandas = "^1.5.1"
plotly = "^5.11.0"
kaleido = "0.2.1"
[tool.pytest.ini_options]
addopts = "--benchmark-skip"
filterwarnings = "ignore::DeprecationWarning"
[tool.black]
extend-exclude = "tests/data"
[tool.coverage.run]
branch = true
command_line = "-m pytest"
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true
omit = ["tests/*"]
[tool.isort]
py_version = "auto"
profile = "black"
extend_skip_glob = ["tests/data/*"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"