-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
62 lines (54 loc) · 1.51 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
[project]
name = "pint-xarray"
authors = [
{name = "Tom Nicholas", email = "[email protected]"}
]
description = "Physical units interface to xarray using Pint"
license = {text = "Apache-2"}
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"numpy >= 1.23",
"xarray >= 2022.06.0",
"pint >= 0.21",
]
dynamic = ["version"]
[project.urls]
Home = "https://github.com/xarray-contrib/pint-xarray"
Documentation = "https://pint-xarray.readthedocs.io/en/stable"
[tool.setuptools.packages.find]
include = [
"pint_xarray",
"pint_xarray.tests",
]
[build-system]
requires = ["setuptools >= 64", "setuptools_scm >= 7.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
fallback_version = "999"
[tool.pytest.ini_options]
junit_family = "xunit2"
[tool.isort]
profile = "black"
skip_gitignore = "true"
force_to_top = "true"
default_section = "THIRDPARTY"
known_first_party = "pint_xarray"
[tool.coverage.run]
source = ["pint_xarray"]
branch = true
[tool.coverage.report]
show_missing = true
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING"]