comfy-recipes/pyproject.toml
2023-11-19 00:26:31 +01:00

29 lines
815 B
TOML

[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__"]