-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
35 lines (29 loc) · 954 Bytes
/
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
[project]
name = "sphinx-autosummary-accessors"
license = {text = "MIT"}
description = "sphinx autosummary extension to properly format pandas or xarray accessors"
authors = [
{name = "Justus Magin", email = "keewis@posteo.de"}
]
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"sphinx >= 3.5",
]
dynamic = ["version"]
[project.urls]
Home = "https://github.com/xarray-contrib/sphinx-autosummary-accessors"
Documentation = "https://sphinx-autosummary-accessors.readthedocs.io/en/stable"
[build-system]
requires = ["setuptools>=64", "setuptools-scm[toml]>=7.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["sphinx_autosummary_accessors", "sphinx_autosummary_accessors.templates"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = "true"
force_to_top = "true"
default_section = "THIRDPARTY"
known_first_party = "sphinx_autosummary_accessors"