Skip to content

Commit

Permalink
BLD: Add spin & meson to optional dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed Jul 6, 2023
1 parent 4161026 commit 12d11ca
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,37 @@ classifiers = [
]

[project.optional-dependencies]
test = [
"pytest-cov",
all = [
"scikit-misc[doc]",
"scikit-misc[build]",
"scikit-misc[lint]",
"scikit-misc[test]",
"scikit-misc[dev]",
]

doc = [
"numydoc",
"sphinx",
"numydoc",
"sphinx",
]

build = [
"build",
"spin",
"meson",
"meson-python"
]

lint = [
"ruff",
]

test = [
"pytest-cov",
]

dev = [
"wheel",
"twine"
"wheel",
"twine",
]

[project.urls]
Expand Down

0 comments on commit 12d11ca

Please sign in to comment.