forked from alan-turing-institute/tapas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 960 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
[tool.poetry]
name = "tapas"
version = "1.0.0"
description = ""
authors = ["Florimond Houussiau <[email protected]>", "James Jordon", "Callum Mole <[email protected]>", "Camila Rangel-Smith <[email protected]>", "James Geddes <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
matplotlib = ">=3.4.3"
palettable = "^3.3.0"
seaborn = "^0.11.2"
pandas = "^1.4.1"
scipy = "^1.8.0"
sklearn = "^0.0"
numpy = "^1.22.3"
Sphinx = {version = "^4.5.0", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
tqdm = "^4.64.0"
setuptools = "^65.5.0"
jupyterlab = "^3.5.0"
nbclient = "0.5.13"
[tool.poetry.dev-dependencies]
spyder-kernels = "^2.1.0"
pytest = "^7.1.0"
Sphinx = "^4.5.0"
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme"]
[tool.poetry.scripts]
prive = "prive.run:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"