-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (90 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (90 loc) · 1.98 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Copyright (c) Brockmann Consult GmbH, 2026
# License: MIT
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "uncertaintyx"
dynamic = ["version"]
authors = [
{ name = "Ralf Quast", email = "ralf.quast@brockmann-consult.de" },
]
description = """\
Tensor-level uncertainty propagation with JAX\
"""
keywords = [
"metrology for Earth Observation",
"uncertainty propagation",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Private :: No Upload",
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE", content-type = "text/plain" }
requires-python = ">=3.11,<3.14"
dependencies = [
"jax",
"matplotlib",
"numpy",
"odrpack",
"optax",
"optimistix",
"pandas",
"seaborn",
"torch",
]
[project.optional-dependencies]
extra = [
"jupyterlab",
]
test = [
"pytest",
"pytest-cov",
]
lint = [
"black",
"flake8",
"ruff",
]
[project.scripts]
[project.urls]
[tool.black]
line-length = 78
[tool.coverage.report]
exclude_also = [
"@torch.compile",
]
[tool.coverage.run]
omit = [
"**/plot/**",
]
disable_warnings = [
"couldnt-parse",
]
[tool.pytest.ini_options]
addopts = "-p no:warnings"
testpaths = ["test"]
[tool.ruff]
line-length = 78
[tool.setuptools.dynamic]
version = { attr = "uncertaintyx.__version__" }
[tool.setuptools.packages.find]
include = [
"uncertaintyx*",
]
exclude = [
"test*",
]
[tool.setuptools.package-data]