-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (100 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
112 lines (100 loc) · 2.38 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
104
105
106
107
108
109
110
111
112
# Copyright (c) Brockmann Consult GmbH, 2025
# License: MIT
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kaleidoscope"
dynamic = ["version"]
authors = [
{ name = "Ralf Quast", email = "ralf.quast@brockmann-consult.de" },
{ name = "Roman Shevchuk", email = "roman.shevchuk@brockmann-consult.de" },
]
description = """\
A Python package for Monte Carlo simulation of errors for ESA SCOPE\
"""
keywords = [
"SCOPE",
]
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.10",
"Topic :: Scientific/Engineering :: Oceanography",
"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.10"
dependencies = [ # imports and runtime
"cartopy",
"dask",
"dask-image",
"h5netcdf",
"h5py",
"matplotlib",
"numpy",
"xarray",
]
[project.optional-dependencies]
extra = [
"jupyterlab",
"netcdf4",
"zarr",
]
test = [
"pytest",
"pytest-cov",
]
lint = [
"black",
"flake8",
"jupyterlab-black",
]
[project.scripts]
kaleidoscope-scatter = "kaleidoscope.main.scatter:main"
kaleidoscope-collect = "kaleidoscope.main.collect:main"
kaleidoscope-resolve = "kaleidoscope.main.resolve:main"
[project.urls]
Homepage = "https://bcdev.github.io/kaleidoscope/"
Repository = "https://github.com/bcdev/kaleidoscope/"
[tool.black]
line-length = 78
target-version = ["py310"]
[tool.coverage.report]
exclude_also = [
"@nb.guvectorize",
"@nb.vectorize",
]
[tool.coverage.run]
omit = [
"kaleidoscope/interface/*",
"kaleidoscope/templates/*",
"kaleidoscope/val/*",
]
[tool.pytest.ini_options]
addopts = "-p no:warnings"
testpaths = ["test"]
[tool.setuptools.dynamic]
version = { attr = "kaleidoscope.__version__" }
[tool.setuptools.packages.find]
include = [
"kaleidoscope*",
]
exclude = [
"test*",
]
[tool.setuptools.package-data]
"kaleidoscope.config" = [
"*.json",
"*.yml",
]
"kaleidoscope.templates" = [
"*.cdl",
]