-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.38 KB
/
pyproject.toml
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
[project]
name = "deltares_wave_toolbox"
version = "1.1.0"
description = "A Python toolbox for wave analysis"
authors = [
{name = "Jan Kramer", email = "jan.kramer@deltares.nl"},
{name = "Menno de Ridder", email = "menno.deridder@deltares.nl"},
{name = "Ivo van der Werf", email = "ivo.vanderwerf@deltares.nl"},
{name = "Joost den Bieman", email = "joost.denbieman@deltares.nl"},
]
license = {text = "GPL-3.0-or-later"}
readme = "README.rst"
requires-python = ">=3.10"
dependencies = [
"numpy (>=2.2.3,<3.0.0)",
"matplotlib (>=3.10.0,<4.0.0)",
"scipy (>=1.14.0)"
]
dynamic = [ "classifiers" ]
[project.urls]
repository = "https://github.com/Deltares-research/wave-toolbox"
documentation = "https://deltares-wave-toolbox.readthedocs.io"
[tool.poetry]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.2"
black = ">=24.8.0"
sphinx = "^8.1.3"
sphinx-rtd-theme = "^3.0.2"
nbsphinx = "^0.9.6"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"