From acfa97de6fcb0d8eb9c9ec8ee59c0bc6c53e016d Mon Sep 17 00:00:00 2001 From: AURUMVORXX Date: Tue, 15 Jul 2025 20:43:31 +0500 Subject: [PATCH] feat: Moved to uv packet manager --- .gitignore | 3 ++- .python-version | 1 + pyproject.toml | 14 +++++++------- 3 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 .python-version diff --git a/.gitignore b/.gitignore index 728bf25..5352bc1 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,5 @@ __pycache__/ # VS Code /.vscode/ -/source/.vscode/ \ No newline at end of file +/source/.vscode/ +src/PyG2O.egg-info/ diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/pyproject.toml b/pyproject.toml index 05f8ec4..019ecac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,9 @@ -[tool.poetry] +[project] name = "PyG2O" version = "2.3.0" -description = "" -authors = ["AURUMVORAX "] - -[tool.poetry.dependencies] -python = "^3.13" -websockets = "^15.0.1" +description = "" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "websockets>=15.0.1", +]