From 8a2f7668a3fb0f4559be3861797e5faa03ded431 Mon Sep 17 00:00:00 2001 From: Zengtudor Date: Tue, 17 Jun 2025 16:54:11 +0800 Subject: [PATCH] update --- .gitignore | 3 +++ main.py | 0 pyproject.toml | 15 +++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..196af68 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.venv +__pycache__ +/.pdm-python \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0612340 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "TravelMapApi" +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 = "GPL3"} + + +[tool.pdm] +distribution = false