forked from robin-cls/fcollections
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
73 lines (64 loc) · 2.13 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
[project]
name = 'files_collections'
dynamic = ["version"]
description = "Read a collection of files using information from their names"
authors = [
{name = "Robin Chevrier", email = "[email protected]"},
{name = "Anne-Sophie Tonneau", email = "[email protected]"}
]
maintainers = [
{name = "Robin Chevrier", email = "[email protected]"},
{name = "Anne-Sophie Tonneau", email = "[email protected]"}
]
requires-python = ">= 3.11"
readme = "README.md"
dependencies = [
"docstring_parser",
"fsspec",
"jinja2",
"netCDF4",
"numpy",
"pandas>=3",
"requests",
"typer",
"xarray[io]"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Oceanography",
"Development Status :: 4 - Beta"]
[tool.setuptools.packages.find]
exclude = ["**/__pycache__", "**/.ipynb_checkpoints"]
where = ["src"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[project.urls]
Repository='https://github.com/robin-cls/fcollections'
[project.optional-dependencies]
testing = ["pytest", "pytest-cov", "sympy", "beautifulsoup4", "pyftpdlib", "pyasynchat"]
geo = ["shapely", "geopandas", "pyinterp<2026.2.0", "dask", "numba"]
doc = ["cartopy", "matplotlib", "sphinx", "sphinx-copybutton", "sphinx-design",
"sphinx-book-theme", "myst-nb"]
[project.scripts]
sad = "fcollections.sad:main"
[build-system]
requires = ["setuptools >= 77.0.3", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
filterwarnings = [
# Warnings should trigger an error by default
"error",
# Can be safely ignored according to
# https://github.com/Unidata/netcdf4-python/issues/1354
"ignore:numpy\\.ndarray size changed"
]