-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 947 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
[tool.poetry]
name = "libeq"
version = "0.1.0"
description = ""
authors = ["Lorenzo Castellino <castellino96@gmail.com>"]
readme = "README.md"
packages = [{ include = "libeq", from = "src" }]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "^1.26.4"
pydantic = "^2.6.4"
pydantic-numpy = "^4.2.0"
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.8.3"
pandas = "^2.2.1"
pytest = "^8.1.1"
ipykernel = "^6.29.3"
pyinstrument = "^4.6.2"
ruff = "^0.3.4"
inline-snapshot = "^0.8.2"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.15"
mkdocstrings = { extras = ["python"], version = "^0.24.1" }
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.8"
markdown-katex = "^202112.1034"
mkdocs-glightbox = "^0.3.7"
black = "^24.3.0"
griffe-fieldz = "^0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"