30 lines
678 B
TOML
30 lines
678 B
TOML
[project]
|
|
name = "dispersionapp"
|
|
version = "0.2.0"
|
|
description = "Model hollow capillary and revolver fiber interactively"
|
|
authors = [{ name = "Benoît Sierro", email = "benoit.sierro@unibe.ch" }]
|
|
|
|
dependencies = [
|
|
"scgenerator @ git+https://github.com/bsierro/scgenerator.git",
|
|
"click",
|
|
"pydantic < 2",
|
|
"tomli",
|
|
"tomli_w",
|
|
"PySide6 >= 6.4.0",
|
|
"pyqtgraph >= 0.13.1",
|
|
]
|
|
|
|
license = { file = "LICENSE" }
|
|
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
]
|
|
|
|
[project.scripts]
|
|
|
|
dispersionapp = "dispersionapp.__main__:main"
|
|
|
|
[build-system]
|
|
build-backend = "setuptools.build_meta"
|
|
requires = ["setuptools >= 65.0.0"]
|