-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.14 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
58
59
60
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mdb_debugger"
version = "1.0.3"
dependencies = [
"click==8.1.7",
"matplotlib==3.8.3",
"numpy==1.26.4",
"pexpect==4.9.0",
"typing_extensions==4.10.0",
]
requires-python = ">= 3.8"
authors = [
{name = "Tom Meltzer", email="tdm39@cam.ac.uk" },
]
maintainers = [
{name = "Tom Meltzer", email="tdm39@cam.ac.uk" },
]
readme = "README.md"
license = { file = "LICENSE" }
[project.scripts]
mdb = "mdb.mdb:run_main"
[project.optional-dependencies]
termgraph = [
"termgraph==0.5.3",
]
develop = [
"black==24.3.0",
"flake8==7.0.0",
"mypy==1.9.0",
"types-setuptools==69.2.0.20240317",
"pytest==8.1.1",
"pytest-cov==4.1.0",
]
docs = [
"sphinx",
"sphinx_click",
"sphinx_rtd_theme",
]
[project.urls]
Documentation = "https://mdb.readthedocs.io/en/latest/"
Repository = "https://github.com/TomMelt/mdb"
Issues = "https://github.com/TomMelt/mdb/issues"
[tool.isort]
profile = "black"
[tool.pycodestyle]
ignore = ["E203", "E501"]
[tool.mypy]
exclude = ["conf.py"]
strict = true
allow_redefinition = true