integrated scgenerator to remove dependency

This commit is contained in:
2025-11-17 08:56:30 +01:00
parent e38c5b87ee
commit ef72904fb5
18 changed files with 6046 additions and 70 deletions

View File

@@ -1,17 +1,19 @@
[project]
name = "dispersionapp"
version = "0.2.0"
version = "0.2.2"
description = "Model hollow capillary and revolver fiber interactively"
authors = [{ name = "Benoît Sierro", email = "benoit.sierro@unibe.ch" }]
authors = [{ name = "Dedebenui", email = "dedebenui@protonmail.com" }]
requires-python = ">=3.13"
dependencies = [
"scgenerator @ git+https://github.com/bsierro/scgenerator.git",
"click",
"pydantic < 2",
"pydantic >= 2",
"tomli",
"tomli_w",
"PySide6 >= 6.4.0",
"pyqtgraph >= 0.13.1",
"numba>=0.62.1",
"scipy>=1.16.3",
]
license = { file = "LICENSE" }
@@ -25,5 +27,17 @@ classifiers = [
dispersionapp = "dispersionapp.__main__:main"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 65.0.0"]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
exclude = [".venv"]
venvPath = "."
venv = ".venv"
typeCheckingMode = "off"
[dependency-groups]
dev = [
"matplotlib>=3.10.7",
]