-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (53 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
63
64
[tool.poetry]
name = "haccytrees"
version = "0.10.0"
description = ""
authors = ["Michael Buehlmann <buehlmann.michi@gmail.com>"]
[tool.poetry.scripts]
haccytrees-convert = "haccytrees.scripts.treenodes2forest:cli"
reorganize-coreproperties = "haccytrees.scripts.reorganize_coreproperties:cli"
intersect-cores-with-lightcone = "haccytrees.scripts.intersect_cores_with_lightcone:cli"
[tool.poetry.dependencies]
python = ">=3.9.0,<3.14"
numpy = "^1.24.0"
matplotlib = "^3.7.1"
numba = "^0.59.1"
click = "^8.1.3"
colossus = "^1.3.1"
scipy = "^1.10.1"
h5py = "^3.8.0"
drawSvg = "^2.3.0"
tomli = "^2.0.1"
[tool.poetry.group.assemble]
optional = true
[tool.poetry.group.assemble.dependencies]
pygio = { git = "https://git.cels.anl.gov/hacc/genericio.git" }
mpipartition = "^1.2.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
sphinxcontrib-napoleon = "^0.7"
sphinx-click = "^5.2.1"
numpydoc = "^1.7.0"
[tool.poetry.group.dev.dependencies]
bump2version = "^1.0.1"
pytest = "^5.4.3"
ipykernel = "^6.22.0"
flake8 = "^7.0.0"
doc8 = "^1.1.1"
rstcheck = "^3.5.0"
black = "^24.4.2"
notebook = "^6.5.3"
Jinja2 = "^3.1.2"
[tool.black]
line-length = 88
target-version = ["py38"]
include = '\.pyi?$'
exclude = '\.git|\.venv|build|_build|dist'
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"