26 lines
541 B
TOML
26 lines
541 B
TOML
[project]
|
|
name = "ESD_bleeding_view_tool"
|
|
version = "0.1.0"
|
|
description = "Default template for PDM package"
|
|
authors = [
|
|
{name = "", email = ""},
|
|
]
|
|
dependencies = [
|
|
"pyside6>=6.7.3",
|
|
"opencv-python>=4.10.0.84",
|
|
"numpy>=2.1.1",
|
|
"pandas>=2.2.3",
|
|
"openpyxl>=3.1.5",
|
|
"xlrd>=2.0.1",
|
|
]
|
|
requires-python = "==3.12.*"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = false
|
|
|
|
[tool.pdm.scripts]
|
|
main = "python src/esd_bleeding_view_tool/__init__.py"
|
|
nox = "python src/esd_bleeding_view_tool/core.py" |