owon_spe_ctrl/pyproject.toml
2024-08-11 21:17:46 +02:00

37 lines
635 B
TOML

[tool.poetry]
name = "owon-spe-ctrl"
version = "0.1.0"
description = ""
authors = ["Asaril <pub@asaril.de>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pyserial = "^3.5"
types-pyserial = "^3.5.0.20240527"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
mypy = "^1.11.1"
flake8 = "^7.1.1"
pytest = "^8.3.2"
[tool.poetry.group.ipy.dependencies]
ipython = "^8.26.0"
[tool.poetry.scripts]
"owon_ui_curve" = "owon_spe_ctrl.ui_curve:main"
"owon_charger" = "owon_spe_ctrl.charger:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 160