-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 1.45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "pyalphashape"
version = "0.1.0"
description = "A Python library for Alpha Shapes in Euclidean and Spherical Geometries."
authors = ["Niklas M. Melton <niklasmelton@gmail.com>"]
license = "MIT"
homepage = "https://github.com/NiklasMelton/PyAlphaShape"
repository = "https://github.com/NiklasMelton/PyAlphaShape"
documentation = "https://github.com/NiklasMelton/PyAlphaShape"
readme = "README.md"
keywords = ["AlphaShape", "Alpha Shape", "Convex Hull", "Spherical", "Geometry"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics"
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
numpy = ">=1.19.4"
scipy = ">=1.5.4"
matplotlib = ">=3.3.3"
plotly = ">=5.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pre-commit = "^4.0.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.2.1"
sphinx-rtd-theme = "^1.0.0"
sphinx-autoapi = ">=3.0.0"
myst-parser = "^1.0"
cffconvert = "^2.0.0"
#sphinxcontrib-bibtex = "^2.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"