-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (26 loc) · 907 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
[tool.poetry]
name = "PyPlaneGeometry"
packages = [
{ include = "planegeometry" },
]
version = "0.1.0"
description = "Plane geometry"
homepage = "https://github.com/stla/PyPlaneGeometry"
authors = ["Stéphane Laurent <[email protected]>"]
documentation = "https://pyplanegeometry.readthedocs.io/en/latest/"
keywords = ["plane geometry", "geometry"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
numpy = "^1.24.2"
sphinx = { version = "^5.3.0", optional = true }
sphinx-rtd-theme = { version = "^1.1.1", optional = true }
sphinxcontrib-restbuilder = { version = "^0.3", optional = true }
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinxcontrib-restbuilder"]
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"