-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (23 loc) · 884 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
[tool.poetry]
name = "pywishart"
version = "0.1.0"
description = "Central and non-central Wishart sampling."
homepage = "https://github.com/stla/pywishart"
authors = ["Stéphane Laurent <laurent_step@outlook.fr>"]
documentation = "https://pywishart.readthedocs.io/en/latest/"
keywords = ["statistics", "distributions"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.2"
scipy = "^1.11.4"
sphinx = { version = "^7.2.0", optional = true }
sphinx-rtd-theme = { version = "^1.3.0", optional = true }
sphinxcontrib-napoleon = { version = "^0.7", optional = true }
sphinxcontrib-restbuilder = { version = "^0.3", optional = true }
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "sphinxcontrib-restbuilder"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"