-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
90 lines (80 loc) · 1.92 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
[build-system]
requires = ["setuptools>=78.1.1", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "remote_climate_data"
description = "intake catalogs for climate data sources on the internet for python"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11,<3.14"
maintainers = [
{name = "Aaron Spring", email = "aaron.spring@posteo.de"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dynamic = ["version"]
dependencies = [
"aiohttp",
"fsspec",
"geopandas",
"intake>=2",
"intake-geopandas>=0.4.0",
"intake-xarray>=2.0.0",
"matplotlib",
"regionmask",
"requests",
"xarray",
]
[project.urls]
Homepage = "https://github.com/aaronspring/remote_climate_data/"
[project.optional-dependencies]
dev = [
"tqdm",
"ipykernel",
"jupyterlab",
"prek",
"pytest",
"pytest-sugar",
"pytest-xdist",
"ruff",
]
viz = [
"cartopy",
"geoviews",
"hvplot",
]
io = [
"h5netcdf",
"h5py",
"netcdf4",
"pydap",
"rioxarray",
]
[tool.setuptools.packages.find]
include = ["remote_climate_data*"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E402"]
[tool.ruff.lint.isort]
known-first-party = ["remote_climate_data"]
[tool.ty]
[tool.ty.src]
include = ["remote_climate_data", "tests"]
[tool.ty.rules]
possibly-missing-attribute = "ignore"
unresolved-import = "ignore"