Initial commit

This commit is contained in:
2023-10-29 20:56:03 -03:00
commit 4b2e566189
10 changed files with 288 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.poetry]
name = "motor-passo"
version = "0.1.0"
description = ""
authors = ["vslg <slgf@protonmail.ch>"]
readme = "README.md"
packages = [{include = "motor_passo"}]
[tool.poetry.dependencies]
python = "^3.9"
rpi-gpio = "^0.7.1"
[tool.poetry.group.dev.dependencies]
yapf = "^0.33.0"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"