From 663dc2e4587c5e90f9d5b2a3915f17c203277e2d Mon Sep 17 00:00:00 2001 From: Zengtudor Date: Tue, 13 Aug 2024 11:49:38 +0800 Subject: [PATCH] init project --- .gitignore | 2 ++ pyproject.toml | 15 +++++++++++++++ src/pmake/__init__.py | 0 tests/__init__.py | 0 4 files changed, 17 insertions(+) create mode 100644 pyproject.toml create mode 100644 src/pmake/__init__.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..78afb2a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "pmake" +version = "0.1.0" +description = "Default template for PDM package" +authors = [ + {name = "Zengtudor", email = "Zengtudor@outlook.com"}, +] +dependencies = [] +requires-python = "==3.12.*" +readme = "README.md" +license = {text = "MIT"} + + +[tool.pdm] +distribution = false diff --git a/src/pmake/__init__.py b/src/pmake/__init__.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