-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 1.03 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
[tool.poetry]
name = "pypolyhedralcubature"
version = "0.2.0"
description = "Multiple integration on convex polytopes."
homepage = "https://github.com/stla/PyPolyhedralCubature"
authors = ["Stéphane Laurent <laurent_step@outlook.fr>"]
documentation = "https://pypolyhedralcubature.readthedocs.io/en/latest/"
keywords = ["integration", "polyhedron", "polytope"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pysimplicialcubature = "^0.2.0"
sympy = "^1.12"
numpy = "^1.26.2"
scipy = "^1.11.0"
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 }
pycddlib = "^2.1.7"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "sphinxcontrib-restbuilder"]
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"