-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (53 loc) · 1.32 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "page"
version = "0.3"
description = "Static website generator"
readme = "README.md"
readme-content-type = "text/markdown"
license = { text = "BSD License" }
authors = [
{ name = "F. Malina", email = "[email protected]" }
]
keywords = ["CMS", "static"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System"
]
urls = { "Funding" = "https://unilexicon.com/fm/pay.html" }
requires-python = ">=3.9"
dependencies = [
"minijinja",
"markdown2",
"markupsafe",
"brotli",
"click",
"pyyaml"
]
[project.optional-dependencies]
dev = [
"markdownify",
"lxml",
"django",
"sqlalchemy",
"pymysql",
"coverage"
]
[tool.setuptools.packages.find]
include = ["page"]
[tool.setuptools.include-package-data]
enabled = true
[project.scripts]
page = "page.gen:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
lint.select = ["E", "F", "B"]
line-length = 86
format.quote-style = "single"