forked from xarray-contrib/datatree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.48 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
[project]
name = "xarray-datatree"
description = "Hierarchical tree-like data structures for xarray"
readme = "README.md"
authors = [
{name = "Thomas Nicholas", email = "[email protected]"}
]
license = {text = "Apache-2"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.9"
dependencies = [
"xarray >=2023.12.0",
"packaging",
]
dynamic = ["version"]
[project.urls]
Home = "https://github.com/xarray-contrib/datatree"
Documentation = "https://xarray-datatree.readthedocs.io/en/stable/"
[build-system]
requires = [
"setuptools>=61.0.0",
"wheel",
"setuptools_scm[toml]>=7.0",
"check-manifest"
]
[tool.setuptools_scm]
write_to = "datatree/_version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''
[tool.setuptools.packages.find]
exclude = ["docs", "tests", "tests.*", "docs.*"]
[tool.setuptools.package-data]
datatree = ["py.typed"]
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "datatree"
[mypy]
files = "datatree/**/*.py"
show_error_codes = true