forked from xarray-contrib/xbatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (62 loc) · 1.54 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
[build-system]
requires = [
"setuptools>=64",
"setuptools-scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "xbatcher"
description = "Batch generation from Xarray objects"
readme = "README.rst"
license = {text = "Apache"}
authors = [{name = "xbatcher Developers", email = "[email protected]"}]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
dependencies = [
"dask",
"numpy",
"xarray",
]
[project.optional-dependencies]
torch = [
"torch",
]
tensorflow = [
"tensorflow",
]
dev = [
"adlfs",
"asv",
"coverage",
"pytest",
"pytest-cov",
"tensorflow",
"torch",
"zarr",
]
[project.urls]
documentation = "https://xbatcher.readthedocs.io/en/latest/"
repository = "https://github.com/xarray-contrib/xbatcher"
[tool.setuptools.packages.find]
include = ["xbatcher*"]
[tool.setuptools_scm]
local_scheme = "node-and-date"
fallback_version = "999"
[tool.isort]
profile = "black"
known_third_party = ["numpy", "pandas", "pytest", "sphinx_autosummary_accessors", "torch", "xarray"]
[tool.pytest.ini_options]
log_cli = true
log_level = "INFO"