-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "marknow"
description = "A lightweight server to browse a collection of Markdown files as a website."
version = "0.1"
readme = "README.md"
authors = [
{name="Ryan Jung", email="ryanjjung@gmail.com"}
]
keywords = ["markdown", "server", "webpage", "website"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: Markdown",
]
requires-python = ">=3.13"
dependencies = [
"Flask>=3,<4",
"Markdown>=3.8"
]
[project.urls]
repository = "https://github.com/ryanjjung/marknow"
issues = "https://github.com/ryanjjung/marknow/issues"
[project.optional-dependencies]
dev = [
"ruff>=0.11,<1"
]
[project.scripts]
marknow = "marknow:main"