-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (85 loc) · 1.98 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
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
[build-system]
requires = ["setuptools >= 61.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xrlint"
dynamic = ["version", "readme"]
authors = [
{name = "Norman Fomferra (Brockmann Consult GmbH)"}
]
description = "A linter for xarray datasets."
keywords = [
"xarray"
]
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"click",
"fsspec",
"pyyaml",
"tabulate",
"xarray",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[tool.setuptools.dynamic]
version = {attr = "xrlint.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
exclude = [
"tests",
"docs"
]
[tool.flake8]
max-line-length = 88
[tool.isort]
profile = "black"
[tool.ruff]
# There is a problem with ruff when linting imports
exclude = ["**/*.ipynb"]
[project.scripts]
xrlint = "xrlint.cli.main:main"
[project.optional-dependencies]
dev = [
# Development tools
"build",
"hatch",
"pytest",
"pytest-cov",
"ruff",
"twine",
# Dataset testing
"dask",
"netcdf4",
"numpy",
"pandas",
"zarr >=2.18,<3",
]
doc = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python"
]
[project.urls]
Documentation = "https://bcdev.github.io/xrlint"
Repository = "https://github.com/bcdev/xrlint"
Changelog = "https://github.com/bcdev/xrlint/blob/main/CHANGES.md"
Issues = "https://github.com/bcdev/xrlint/issues"