add pyproject.toml
This commit is contained in:
parent
81fdafb907
commit
e1f25dbb14
1 changed files with 29 additions and 0 deletions
29
pyproject.toml
Normal file
29
pyproject.toml
Normal file
|
@ -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__"]
|
Loading…
Add table
Add a link
Reference in a new issue