Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

move to a pyproject.toml-based build configuration #219

Merged
merged 7 commits into from
Feb 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[flake8]
ignore =
# whitespace before ':' - doesn't work well with black
E203
# module level import not at top of file
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
exclude=
.eggs
doc
4 changes: 4 additions & 0 deletions .git_archival.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node: $Format:%H$
node-date: $Format:%cI$
describe-name: $Format:%(describe:tags=true)$
ref-names: $Format:%D$
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: check-yaml
# isort should run before black as black sometimes tweaks the isort output
- repo: https://github.com/PyCQA/isort
rev: 5.11.4
rev: 5.12.0
hooks:
- id: isort
# https://github.com/python/black#version-control-integration
Expand Down
4 changes: 2 additions & 2 deletions ci/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dependencies:
- ipython
- h5netcdf
- zarr
- xarray
- pip:
- git+https://github.com/xarray-contrib/datatree
- -e ..
- sphinxext-rediraffe
- sphinxext-opengraph
- xarray>=2022.05.0.dev0
51 changes: 48 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,37 @@
[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 >=2022.6.0",
]
dynamic = ["version"]

[project.urls]
Home = "https://github.com/xarray-contrib/datatree"
Documentation = "https://xarray-datatree.readthedocs.io/en/stable/"

[build-system]
requires = [
"setuptools>=42",
"setuptools>=61.0.0",
"wheel",
"setuptools_scm[toml]>=3.4",
"setuptools_scm_git_archive",
"setuptools_scm[toml]>=7.0",
"check-manifest"
]

Expand All @@ -13,3 +41,20 @@ 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
60 changes: 0 additions & 60 deletions setup.cfg

This file was deleted.