19 lines
394 B
TOML
19 lines
394 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.backends._legacy:_Backend"
|
|
|
|
[project]
|
|
name = "tinyweb-forum"
|
|
version = "0.1.0"
|
|
description = "Decentralized link-sharing forum for TinyWeb"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"rns",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = []
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["tinyweb_forum*"]
|