-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.16 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
[tool.poetry]
name = "geosss"
version = "0.2.1"
description = "Python package implementing an ideal and shrinkage-based geodesic slice sampling on the sphere."
authors = ["Michael Habeck <[email protected]>",
"Shantanu Kodgirwar <[email protected]>",
"Mareike Hasenpflug <[email protected]>",
"Daniel Rudolf <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/microscopic-image-analysis/geosss"
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
scipy = "^1.11.1"
numpy = "^1.25.1"
matplotlib = "^3.7.2"
csb = "^1.2.5"
arviz = "^0.20.0"
tsp-solver = { version = "^0.1"}
seaborn = { version = "^0.12.2", optional = true }
black = { version = "^24.3.0", optional = true }
ipykernel = { version = "^6.25.0", optional = true }
zenodo-get = { version = "^1.6.1", optional = true }
corner = {version = "^2.2.2", optional = true }
joblib = {version = "^1.4.2", optional = true }
[tool.poetry.extras]
dev = ["seaborn", "black", "ipykernel", "zenodo-get", "corner", "joblib"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"