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", +]