-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.12 KB
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
[project]
name = "microsite"
description = "Tools to make the small web accessible"
version = "0.0.1"
readme = "README.md"
authors = [
{name="Ryan Jung", email="ryanjjung@gmail.com"}
]
keywords = ["smallweb", "website", "publishing"]
classifiers = [
"Environment :: Web Environment",
"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 = [
"beautifulsoup4>=4.13.4,<5",
"Jinja2>=3.1.6,<4.0",
"Markdown>=3.8.2,<4.0",
"python-magic>=0.4.27,<1.0",
"tb_pulumi @ git+https://github.com/thunderbird/pulumi.git@v0.0.15",
"toml>=0.10.2,<1.0",
]
[project.urls]
repository = "https://github.com/ryanjjung/microsite"
issues = "https://github.com/ryanjjung/microsite/issues"
[project.optional-dependencies]
dev = [
"bpython",
"furo>=2025.7.19",
"ruff>=0.12,<1.0",
"Sphinx>=8.2.3,<9.0",
]
[build-system]
requires = [
"setuptools>=80.9.0,<81.0",
"setuptools-scm>=8.3.1,<9",
]