-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 996 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 996 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
31
32
33
34
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mapelia"
description = "Generation of 3D models from maps"
version = "1.3.0"
authors = [
{ name="Amelia Ortiz-Gil", email="amelia.ortiz@uv.es" },
{ name="Jordi Burguet-Castell", email="jordi.burguet.castell@gmail.com" },
]
readme = "readme.md"
license = { file="license.md" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dependencies = ["numpy", "pillow"]
[project.urls]
"Homepage" = "https://github.com/jordibc/mapelia"
[project.scripts]
mapelia = "mapelia.scripts:main_mapelia"
guapelia = "mapelia.scripts:main_guapelia"
pintelia = "mapelia.scripts:main_pintelia"
poligoniza = "mapelia.scripts:main_poligoniza"
stl-split = "mapelia.scripts:main_stl_split"
smooth = "mapelia.scripts:main_smooth"
[project.optional-dependencies]
cython = ["cython", "setuptools"]