This commit is contained in:
AndBondStyle
2023-10-30 02:03:02 +03:00
parent f4d66533b5
commit 3d48cb4a7b
14 changed files with 572 additions and 285 deletions
+25
View File
@@ -0,0 +1,25 @@
[tool.poetry]
name = "niimprint"
version = "0.1.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "~3.11"
pyserial = "^3.5"
pillow = "^10.1.0"
click = "^8.1.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["I", "F", "E"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]