-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
32 lines (28 loc) · 1.02 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
[tool.poetry]
name = "PyHyperbolic3D"
packages = [
{ include = "hyperbolic3d" },
]
version = "0.1.0"
description = "Hyperbolic meshes for 'PyVista'"
homepage = "https://github.com/stla/PyHyperbolic3D"
authors = ["Stéphane Laurent <[email protected]>"]
documentation = "https://pyhyperbolic3d.readthedocs.io/en/latest/"
keywords = ["hyperbolic geometry", "3D meshes", "PyVista"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "^1.21.2"
pyvista = "^0.32.1"
sphinx = { version = "^5.3.0", optional = true }
sphinx-rtd-theme = { version = "^1.1.1", 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"]
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"