-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (59 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (59 loc) · 2 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
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=77", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bluemesh2d"
description = "BlueMesh2D 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 = "GPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Geomatics and Ocean Engineering Group", email = "faugeree@unican.es" },
]
dynamic = ["version"]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"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.urls]
Homepage = "https://github.com/GeoOcean/BlueMesh2D"
Documentation = "https://github.com/GeoOcean/BlueMesh2D"
Issues = "https://github.com/GeoOcean/BlueMesh2D/issues"
[tool.spin]
package = "bluemesh2d"
[tool.setuptools_scm]
version_file = "bluemesh2d/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
# bluemesh2d/ uses implicit (PEP 420) namespace packages -- no __init__.py --
# so namespace discovery is required, otherwise the wheel ships no code.
# The QGIS plugin (a vendored copy) and the tests are not part of the library.
include = ["bluemesh2d*"]
exclude = ["bluemesh2d_qgis*", "tests*", "assets*", "docs*"]
namespaces = true
[tool.setuptools.package-data]
# ship the demo/reference geometries that tridemo and the tests load
"bluemesh2d.poly_data" = ["*.msh"]
"bluemesh2d.poly_test" = ["*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]