forked from Sbozzolo/kuibit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (62 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "kuibit"
version = "1.5.0"
description = "Read and analyze Einstein Toolkit simulations."
authors = ["Gabriele Bozzola <[email protected]>"]
maintainers = ["Gabriele Bozzola <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/sbozzolo/kuibit"
repository = "https://github.com/sbozzolo/kuibit"
documentation = "https://sbozzolo.github.io/kuibit"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sbozzolo/kuibit/issues"
[tool.poetry.dependencies]
python = "^3.7, <3.13"
numpy = [{ version = "^1.21.0", python = "<3.9" },
{ version = "^1.26.0", python = ">=3.9" }]
scipy = [{ version = "^1.7.0", python = "<3.8" },
{ version = "^1.9.0", python = "<3.9, >3.8" },
{ version = "^1.11.0", python = ">=3.12" }]
h5py = "^3.2.0"
numba = [{ version = ">=0.50, ^0", optional = true, python = "<3.8"},
{ version = ">=0.57, ^0", optional = true, python = ">=3.8"}]
ConfigArgParse = "^1.2.3"
matplotlib = "^3.5.0"
motionpicture = ">=0.2.0, ^0"
argcomplete = "^2.0.0"
tikzplotlib = ">=0.9.13, ^0"
py-expression-eval = ">=0.3.14, ^0"
openpmd-api = [{ version = "^0.14.0", python = "<3.8" },
{ version = "^0.15.2", python = ">3.8" }]
[tool.poetry.dev-dependencies]
black = { version = "^24.1.0", python = ">=3.8.1" }
coverage = "^6.3"
setuptools = { version = "^69.0.0", python = ">=3.8.1" } # Required for sphinxcontrib-bibtex
Sphinx = { version = "^6.0.0", python = ">=3.8.1" }
jupyter = { version = "^1.0.0", python = ">=3.8.1" }
jedi = ">=0.18.1, ^0"
snakeviz = "^2.1.0"
nbsphinx = ">0.8.10, ^0"
isort = { version = "^5.13.0", python = ">=3.8.1" }
flake8 = [{ version = "^6.0.0", python = ">=3.8.1" }]
mypy = ">=0.931, ^0"
sphinx-autodoc-typehints = "^1.17.0"
sphinxcontrib-citations = ">=0.1.1, ^0"
[tool.poetry.extras]
full = ["numba"]
[tool.black]
line-length = 79
exclude = '''
/(
\.git
| docs
)/
'''
[tool.isort]
line_length = 79
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"