- updated dependencies
- added uv
This commit is contained in:
2026-06-07 02:24:15 -05:00
parent bf069d12c3
commit 86065b30d0
4 changed files with 87 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
[project]
name = "markdown-server"
version = "0.1.5"
description = "A simple markdown server."
authors = [
{ name = "long", email = "longnguyen176251@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"bottle>=0.13.4",
"markdown>=3.10.2",
"py-gfm>=2.0.0",
"pygments>=2.20.0",
]
[project.scripts]
markdownserver = "markdownserver:main"
convert = "markdownserver.markdown_converter:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://git.the-red-comet.org/guy176251/markdown-server"