30 lines
918 B
TOML
30 lines
918 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "comfy-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", "mistune", "lxml", "lxml_html_clean"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python",
|
|
]
|
|
license = { file = "LICENSE" }
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.comfy.city/Emi/comfy-recipes"
|
|
Repository = "https://git.comfy.city/Emi/comfy-recipes.git"
|
|
Issues = "https://git.comfy.city/Emi/comfy-recipes/issues"
|
|
Documentation = "https://comfy.city/comfy-recipes/docs"
|
|
|
|
[project.scripts]
|
|
recipes-cli = "comfyrecipes.cli:main"
|
|
|
|
[tool.hatch.build]
|
|
include = ["/comfyrecipes"]
|
|
exclude = ["__pycache__"]
|