forked from Sbozzolo/kuibit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.4 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
[tool.poetry]
name = "kuibit"
version = "1.4.0-dev1"
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.8, <3.12"
numpy = "^1.23.0"
scipy = "^1.9.0"
h5py = "^3.0.0"
numba = { version = "^0.56.4", optional = true, python = ">=3.8, <3.11"}
ConfigArgParse = "^1.2.3"
matplotlib = "^3.5.0"
motionpicture = "^0.2.0"
argcomplete = "^2.0.0"
tikzplotlib = "^0.9.13"
py-expression-eval = "^0.3.14"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
coverage = "^6.3"
Sphinx = "^4.4.0"
jupyter = "^1.0.0"
jedi = "^0.18.1"
snakeviz = "^2.1.0"
nbsphinx = "^0.8.10"
isort = "^5.10.0"
flake8 = "^4.0.0"
mypy = "^0.931"
sphinx-autodoc-typehints = "^1.17.0"
sphinxcontrib-citations = "^0.1.1"
[tool.poetry.extras]
full = ["numba", "lalsuite", "pycbc"]
[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"