Update README.md to provide detailed project description, features, installation instructions, usage guidelines, and technical details for WebCounter - a Flask WebSocket server.

This commit is contained in:
2025-07-07 09:01:37 +03:00
parent 12466170c3
commit 09d8871ac3
18 changed files with 3492 additions and 1 deletions

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[project]
name = "webcounter"
version = "0.1.0"
description = "A Flask webserver with WebSocket support for client/controller communication."
authors = [
{ name = "Your Name", email = "your@email.com" }
]
requires-python = ">=3.8"
dependencies = [
"Flask==2.3.3",
"Flask-SocketIO==5.3.6",
"python-socketio==5.8.0",
"python-engineio==4.7.1"
]