-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (49 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
63 lines (49 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pymesh2d"
description = "pymesh2D is a Python-based unstructured mesh-generator for two-dimensional polygonal geometries, providing a range of relatively simple, yet effective two-dimensional meshing algorithms."
readme = "README.md"
keywords = ["mesh"]
license = { file = "LICENSE" }
authors = [
{ name = "Geomatics and Ocean Engineering Group", email = "faugeree@unican.es" },
]
dynamic = ["version"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"numpy",
"scipy",
"triangle",
"matplotlib",
"netCDF4",
"rasterio",
"xarray",
"shapely",
]
[project.optional-dependencies]
geo = ["shapely"]
[project.urls]
Homepage = "https://github.com/GeoOcean/pymesh2d"
Documentation = "https://github.com/GeoOcean/pymesh2d"
Issues = "https://github.com/GeoOcean/pymesh2d/issues"
[tool.spin]
package = "pymesh2d"
[tool.setuptools_scm]
version_file = "pymesh2d/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
exclude = ["assets", "assets.*"]