-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 797 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 797 Bytes
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
[project]
name = "alphashapy"
version = "0.2.0"
description = "A Python package for constructing alpha shapes and alpha hulls for both positive and negative alphas."
readme = "README.md"
requires-python = ">=3.8"
authors = [{name = "Itai Pelles"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"numpy",
"scipy",
"shapely"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/itaipelles/alphashapy"
Changelog = "https://github.com/itaipelles/alphashapy/releases"
Issues = "https://github.com/itaipelles/alphashapy/issues"
CI = "https://github.com/itaipelles/alphashapy/actions"
[project.optional-dependencies]
test = ["pytest"]