-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.58 KB
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
[tool.poetry]
name = "tramway"
version = "0.7"
description = ""
authors = ["François Laurent <francois.laurent@pasteur.fr>"]
license = "CECILL-2.1"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4"
setuptools = ">=69.1.0,<99"
six = ">=1.16,<2"
numpy = ">=1.24.3,<3"
scipy = ">=1.9.1,<2"
pandas = ">=2.0.2,<3"
matplotlib = ">=3.7.1,<4"
rwa-python = ">=0.9.3,<1"
multiprocess = ">=0.70.19,<1"
polytope = { version = ">=0.2.3,<1", optional = true }
cvxopt = { version = ">=1.3.1,<2", optional = true }
paramiko = { version = ">=3.2.0,<4", optional = true }
stopit = { version = ">=1.1.2,<2", optional = true }
nbconvert = { version = ">=7.4.0,<8", optional = true }
bokeh = { version = ">=2.0.2,<2.3.0", optional = true }
selenium = { version = ">=4.9.1,<5", optional = true }
plotly = { version = ">=5.14.1,<6", optional = true }
nbformat = { version = ">=5.9.0,<6", optional = true }
opencv-python = { version = ">=4.7.0.72,<5", optional = true }
scikit-image = { version = ">=0.20.0,<1", optional = true }
tqdm = { version = ">=4.65.0,<5", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
[tool.poetry.extras]
# `full` is for backward compatibility; use --all-extras instead
full = ["polytope", "cvxopt", "paramiko", "stopit", "nbconvert", "opencv-python", "scikit-image", "tqdm"]
roi = ["polytope", "cvxopt", "tqdm"]
animate = ["opencv-python", "scikit-image", "tqdm"]
hpc-minimal = ["polytope", "cvxopt", "stopit"]
hpc = ["polytope", "cvxopt", "paramiko", "stopit", "nbconvert"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"