28 lines
666 B
TOML
28 lines
666 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools", "wheel"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "Dreamii"
|
||
|
version = "1.0.0"
|
||
|
readme = "README.md"
|
||
|
license = { file = "LICENSE", content-type="text/markdown" }
|
||
|
description = "Dreamii CMS by Molodetz"
|
||
|
authors = [
|
||
|
{ name = "retoor", email = "retoor@molodetz.nl" }
|
||
|
]
|
||
|
keywords = ["cms", "dreamii", "jinja","jinja2","markdown","retoor","molodetz"]
|
||
|
requires-python = ">=3.12"
|
||
|
dependencies = [
|
||
|
"shed",
|
||
|
"app @ git+https://retoor.molodetz.nl/retoor/app",
|
||
|
"beautifulsoup4",
|
||
|
"gunicorn",
|
||
|
"mistune",
|
||
|
"aiohttp-session",
|
||
|
"cryptography"
|
||
|
]
|
||
|
|
||
|
[project.scripts]
|
||
|
dreamii = "dreamii.__main__:main"
|