32 lines
854 B
TOML
32 lines
854 B
TOML
[project]
|
|
name = "cim-service-suite"
|
|
version = "1.2.0"
|
|
description = "DA-12 Monitoring Station Service Tool (modern rebuild)"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["PySide6>=6.7", "pyserial>=3.5", "openpyxl>=3.1", "PySideSix-Frameless-Window>=0.8"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8", "pytest-qt>=4.4", "ruff>=0.6", "pyinstaller>=6.10", "pillow"]
|
|
|
|
[project.scripts]
|
|
cim-suite = "cim_suite.shell.app:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["cim_suite*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"cim_suite.core.ui.theme" = ["fonts/*.ttf", "fonts/*.txt"]
|
|
"cim_suite.core.ui.kit" = ["icons/*.svg"]
|
|
"cim_suite.modules.iomodbus" = ["resources/*.txt"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
qt_api = "pyside6"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|