This commit is contained in:
2025-12-23 20:09:10 +01:00
parent 9c61915939
commit 4c6ca885c6
9 changed files with 193 additions and 14 deletions

View File

@@ -31,6 +31,24 @@ classifiers = [
dependencies = [
"numpy",
]
[project.optional-dependencies]
docs = ["sphinx", "furo"]
test = ["pytest"]
dev = [
# recursive optional dependencies
"fvr[docs,test]",
# Useful for building quick scripts, https://github.com/google/python-fire
"fire",
# Code quality tools
"mypy",
# # Improved exception traceback output
# # https://github.com/qix-/better-exceptions
# "better_exceptions",
# # Analyzing dependencies
# # install graphviz to generate graphs
# "graphviz",
# "pipdeptree",
]
[tool.setuptools.dynamic]
version = {attr = "fvr.__version__"}