From 41f178239bc33b9b618d47b74aae81cca5f19c3d Mon Sep 17 00:00:00 2001 From: ZtRXR Date: Fri, 28 Jun 2024 15:04:52 +0800 Subject: [PATCH] update --- .gitignore | 2 ++ pyproject.toml | 15 +++++++++++++++ src/glpy/__init__.py | 0 src/main.py | 0 tests/__init__.py | 0 5 files changed, 17 insertions(+) create mode 100644 pyproject.toml create mode 100644 src/glpy/__init__.py create mode 100644 src/main.py create mode 100644 tests/__init__.py diff --git a/.gitignore b/.gitignore index 5d381cc..198c3a5 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,5 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +.pdm-python +pdm.lock diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..70ca685 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "glpy" +version = "0.1.0" +description = "Default template for PDM package" +authors = [ + {name = "ZtRXR", email = "Zengtudor@outlook.com"}, +] +dependencies = [] +requires-python = "==3.12.*" +readme = "README.md" +license = {text = "GPL"} + + +[tool.pdm] +distribution = false diff --git a/src/glpy/__init__.py b/src/glpy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29