-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "yt_xarray"
authors = [
{ name="Chris Havlin", email="[email protected]" },
]
description="interface between yt and xarray"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies=['yt>=4.2.0', 'h5py>=3.4.0', 'pooch>=1.5.1', 'xarray']
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/data-exp-lab/yt_xarray"
"Bug Tracker" = "https://github.com/data-exp-lab/yt_xarray/issues"
[project.optional-dependencies]
full = ["netCDF4", "scipy", "dask[complete]", "cf_xarray"]
test = ["pytest", "pytest-cov", "cartopy"]
docs = ["Sphinx==7.2.6", "jinja2==3.1.2", "nbsphinx==0.9.3"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
combine_as_imports = true
skip = ["venv", "benchmarks"]
[tool.setuptools.dynamic]
version = {attr = "yt_xarray.__version__"}
[tool.mypy]
files = ["yt_experiments",]
python_version = "3.10"
warn_unused_configs = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
disable_error_code = ["import-untyped", "import-not-found"]
no_implicit_reexport = false