-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.39 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
[project]
name = "morb_fetch"
version = "0.1.0"
description = "Model Order Reduction Benchmark Data Fetcher"
readme = "README.md"
authors = [
{ name = "MORB Developers and Contributors", email = "morb@listserv.dfn.de" },
]
license = "BSD-3-Clause"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.2.6",
"polars>=1.30.0",
"pooch>=1.8.2",
"pydantic>=2.11.4",
"pydantic-settings[yaml]>=2.9.1",
"pymatreader>=1.1.0",
"rich>=14.0.0",
"scipy>=1.15.3",
"tqdm>=4.67.1",
"typing-extensions>=4.13.2",
]
[project.scripts]
morb-fetch = "morb_fetch:main"
[project.urls]
Documentation = "https://morb-fetch.readthedocs.io"
Repository = "https://github.com/mardi4nfdi/morb-fetch"
[build-system]
requires = ["hatchling>=1.26", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
test = ["pytest>=6"]
dev = [{ include-group = "test" }]
docs = [
"sphinx>=7.0",
"myst_parser>=0.13",
"sphinx_copybutton",
"sphinx_autodoc_typehints",
"sphinx-rtd-theme>=3.0.2",
]