-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (57 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
68 lines (57 loc) · 1.58 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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
urls = { Homepage = "https://github.com/RubendeBruin/mafredo", Documentation = "https://open-ocean.org/mafredo" }
name = "MaFreDo"
description = "Marine Frequency Domain"
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [{ name = "Ruben de Bruin", email = "rubendebruin@gmail.com" }]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dependencies = [
"matplotlib>=3.10.7",
"h5netcdf>=1.6.3",
"numpy>=2",
"pyyaml>=6.0.3",
"xarray>=2025.6.1",
"scipy"
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"setuptools>=80.9.0",
"setuptools-scm>=9.2.0",
]
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[tool.pytest.ini_options]
addopts = ["--cov=src/mafredo", "--cov-report=term-missing"]
norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]
[tool.flake8]
max_line_length = 88
extend_ignore = ["E203", "W503"]
exclude = [".tox", "build", "dist", ".eggs", "docs/conf.py"]
[tool.wheel]
universal = true
[tool.devpi.upload]
no_vcs = true
formats = ["bdist_wheel"]