Skip to content

Commit

Permalink
Fix toml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecThomson committed Dec 4, 2024
1 parent 1bdd70a commit 7077523
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fixms"
version = "0.2.9"
version = "0.0.0" # a placeholder
description = ""
authors = ["Alec Thomson (S&A, Kensington WA) <[email protected]>"]
readme = "README.md"
Expand All @@ -15,8 +15,8 @@ tqdm = "*"
importlib-resources = {version="*", python = "<3.9"}

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"

[tool.poetry.group.dev.dependencies]
isort = ">=5.12.0"
Expand All @@ -32,15 +32,17 @@ pre-commit = "*"
[tool.poetry.extras]
dev = [
"ruff",
"sphinx",
"numpydoc",
"myst_parser",
"autoapi",
"sphinx-autoapi",
"pydata-sphinx-theme",
"pytest",
"pre-commit",
]
docs =[
"autoapi",
"myst_parser",
"numpydoc",
"pydata-sphinx-theme",
"sphinx",
"sphinx-autoapi",
]


[tool.poetry.scripts]
Expand Down

0 comments on commit 7077523

Please sign in to comment.