-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.27 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
[tool.poetry]
name = "hari-plotter"
version = "0.2.0"
description = "`hari-plotter` enables post-processing, plotting, and visualizations of Seldon simulations and output (under development)."
authors = ["Ivan Tambovtsev <imtambovtcev@gmail.com>"]
readme = "README.md"
packages = [{include = "hari_plotter"}]
[tool.poetry.dependencies]
python = "^3.10,<3.13"
numpy = "^1.26.0"
coverage = "^7.3.2"
matplotlib = "^3.8.0"
networkx = "^3.1"
toml = "^0.10.2"
imageio = {extras = ["ffmpeg"], version = "^2.34.0"}
seaborn = "^0.13.0"
scipy = "^1.11.3"
scikit-learn = "^1.3.2"
scikit-fuzzy = "^0.4.2"
PyQt5 = [
{version = "5.14", python = "~3.10", optional = true}, # For Python 3.10, PyQt5 must be exactly version 5.14
{version = "^5.14", python = "~3.12", optional = true} # For Python 3.12, PyQt5 version 5.14 or higher is acceptable
]
pandas = "^2.2.1"
[tool.poetry.extras]
qt = ["PyQt5"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
ipykernel = "^6.25.2"
# pytest-qt = "^4.4.0"
papermill = "^2.5.0"
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
nbsphinx = "^0.9.4"
nbconvert = "^7.16.4"
pandoc = "^2.3"
recommonmark = "^0.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hari-plotter = "hari_plotter.gui.main_window:main"