diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9cac692 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "recipes" +version = "0.0.1" +description = "Smart recipe static site generator" +authors = [{ name = "Emi Vasilek", email = "emi.vasilek@gmail.com" }] +keywords = ["recipes", "recipe", "static site generator"] +requires-python = ">= 3.8" +dependencies = ["jsonschema", "jinja2", "PyYAML"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Programming Language :: Python", +] +license = { file = "LICENSE" } + +[project.urls] +Homepage = "https://codeberg.org/comfy.city/recipes" +Repository = "https://codeberg.org/comfy.city/recipes.git" +Issues = "https://codeberg.org/comfy.city/recipes/issues" + +[project.scripts] +recipes-cli = "comfyrecipes.cli:main" + +[tool.hatch.build] +include = ["/comfyrecipes"] +exclude = ["__pycache__"]