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