init project

This commit is contained in:
Zengtudor 2024-08-13 11:49:38 +08:00
parent 574e67e24e
commit 663dc2e458
4 changed files with 17 additions and 0 deletions

2
.gitignore vendored
View File

@ -160,3 +160,5 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
.pdm-python
pdm.lock

15
pyproject.toml Normal file
View File

@ -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

0
src/pmake/__init__.py Normal file
View File

0
tests/__init__.py Normal file
View File