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"