forked from thetisproject/thetis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (47 loc) · 1.07 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "thetis"
version = "2025.10.1"
dependencies = [
"netCDF4",
"pylit",
"pyproj",
"pytz",
"scipy",
"traitlets",
"uptide",
"vtk",
"pyyaml",
]
authors = [
{name = "Tuomas Karna", email = "tuomas.karna@gmail.com" },
]
description = "Finite element ocean model"
readme = "readme.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://thetisproject.org"
Repository = "https://github.com/thetisproject/thetis.git"
[tool.setuptools]
packages = ["thetis", "test", "examples"]
[project.optional-dependencies]
# Dependencies needed to build the docs
docs = [
"bibtexparser",
"matplotlib", # needed to resolve API
"numpydoc",
"pylit",
"sphinx<8.2.0", # https://github.com/firedrakeproject/firedrake/issues/4059
"sphinx-autobuild",
"sphinx-reredirects",
"sphinxcontrib-bibtex",
"sphinxcontrib-jquery",
"sphinxcontrib-svg2pdfconverter",
"sphinxcontrib-youtube",
"vtk", # needed to resolve API
]