Reorganize project layout. Add buildability.

This commit is contained in:
2024-02-08 21:14:00 -08:00
parent 49ddb152ec
commit 7c98e6e895
7 changed files with 504 additions and 0 deletions

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "heckformat"
dynamic = ["version"]
description = "A simple format for configuration and content storage."
authors = [{name = "Cassowary", email="cassowary@aldercone.studio"}]
dependencies = ["ply>=3.1"]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "LICENSE"}
[tool.pdm.build]
package-dir = "python"
[tool.pdm.version]
source = "file"
path = "python/heckformat/__init__.py"