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