pyproject.toml aktualisiert
This commit is contained in:
parent
90b05a218a
commit
f184986ec9
|
|
@ -1,36 +1,24 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools>=61.0.0", "wheel"]
|
requires = ["setuptools>=61.0.0", "wheel"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "forgejo-blog-manager"
|
name = "forgejo-blog-manager"
|
||||||
version = "0.1.0"
|
version = "0.1.3"
|
||||||
description = "Python-basierter Blog-Manager mit Flask-Interface und Pelican SSG"
|
description = "Blog-Manager für Uberspace 8 mit Marvin API und Pelican"
|
||||||
authors = [
|
requires-python = ">=3.9"
|
||||||
{name = "Ihre Autorin", email = "autorin@example.com"}
|
dependencies = [
|
||||||
]
|
"Flask",
|
||||||
license = {text = "MIT"}
|
"GitPython",
|
||||||
readme = "README.md"
|
"Pelican",
|
||||||
requires-python = ">=3.9"
|
"Markdown",
|
||||||
|
"requests",
|
||||||
# Kern-Abhängigkeiten
|
"Werkzeug"
|
||||||
dependencies = [
|
]
|
||||||
"Flask",
|
|
||||||
"GitPython",
|
[project.scripts]
|
||||||
"Pelican",
|
blog-cli = "dlw.commands:main"
|
||||||
"Markdown",
|
|
||||||
"Werkzeug" # Wird oft von Flask benötigt, um Datei-Uploads zu handhaben
|
[tool.setuptools]
|
||||||
]
|
package-dir = {"" = "src"}
|
||||||
|
packages = ["dlw"]
|
||||||
# Konfiguriert den Kommandozeilen-Einstiegspunkt (z.B. 'blog-cli start')
|
|
||||||
[project.scripts]
|
|
||||||
blog-cli = "dlw.commands:main"
|
|
||||||
|
|
||||||
[tool.setuptools]
|
|
||||||
package-dir = {"" = "src"}
|
|
||||||
packages = ["dlw"]
|
|
||||||
|
|
||||||
# Stellt sicher, dass alle notwendigen Konfigurationsdateien mitinstalliert werden
|
|
||||||
[tool.setuptools.package-data]
|
|
||||||
"dlw" = ["ssg_config/*", "ssg_config/templates/*"]
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue