-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 968 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 = "cute-shm"
version = "1.02"
description = "managing np arrays stored in the shared memory"
authors = [
"Vincent Berenz <vberenz@tuebingen.mpg.de>",
]
packages = [
{ include = "cute_shm" },
]
readme = "README.md"
repository = "https://github.com/MPI-IS/cute-shm"
homepage = "https://github.com/MPI-IS/cute-shm"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.0.1"
tomli = "^2.0.1"
tomli-w = "^1.0.0"
psutil = "^6.0.0"
rich = "^13.7.1"
h5py = "^3.11.0"
filelock = "^3.15.4"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
black = "^24.8.0"
pytest = "^8.3.2"
types-psutil = "^6.0.0.20240621"
pandas-stubs = "^2.2.2.240807"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
cute-shm-hdf5 = "cute_shm.main:hdf5"
cute-shm-unlink = "cute_shm.main:unlink_shm"
cute-shm-list = "cute_shm.main:display_projects"
cute-shm-evaluate = "cute_shm.main:evaluate"