initial commit

This commit is contained in:
Arduinum628
2025-04-08 13:07:45 +03:00
commit 8b01002fb0
7 changed files with 1361 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "web-robot-control"
version = "0.1.0"
description = "Web-robot-control - веб-приложение для управлением роботом и трансляции видео с веб-камеры."
authors = [
{name = "Arduinum628",email = "message.chaos628@gmail.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"streamlit (>=1.44.1,<2.0.0)"
]
[tool.poetry]
packages = [{include = "web_robot_control", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"