30 lines
706 B
TOML
30 lines
706 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "forgejo-blog-manager"
|
|
version = "0.1.3"
|
|
description = "Blog-Manager für Uberspace 8 mit Marvin API und Pelican"
|
|
authors = [{name = "Ihre Autorin", email = "autorin@example.com"}]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"Flask",
|
|
"GitPython",
|
|
"Pelican",
|
|
"Markdown",
|
|
"requests",
|
|
"Werkzeug"
|
|
]
|
|
|
|
[project.scripts]
|
|
blog-cli = "dlw.commands:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
packages = ["dlw"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"dlw" = ["ssg_config/*", "ssg_config/templates/*"] |