From f1b34d16b70586224bbb16edc571e5593dba7d1e Mon Sep 17 00:00:00 2001 From: public-pull Date: Sat, 16 May 2026 19:11:42 +0200 Subject: [PATCH] add pyproject.toml --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ae23926 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[build-system] +requires = ["setuptools>=68.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "easybot-windows-agent" +version = "1.0.0" +description = "EasyBot Windows Agent — remote GUI automation client" +requires-python = ">=3.11" +dependencies = [ + "websockets>=12.0,<14", + "windows-use>=0.1.0", +] + +[project.scripts] +easybot-windows-agent = "easybot_windows_agent.main:main"