-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 753 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "minigen"
version = "0.1.0"
description = "A minimalist static site generator"
authors = [
{ name = "Alexander Hagerman" },
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"Jinja2==2.11.3",
"MarkupSafe==1.1.1",
"staticjinja==2.0.0",
"markdown==3.4.3",
"feedgen==0.9.0",
"livereload==2.6.3",
"pyyaml==6.0.1",
"python-frontmatter==1.0.0",
"tomli==2.0.1",
"feedparser>=6.0.0",
]
[project.optional-dependencies]
dev = ["build", "wheel", "ruff", "mypy"]
test= ["pytest", "pytest-cov", "requests", "beautifulsoup4"]
publishing = ["twine"]
[project.scripts]
minigen = "minigen.cli:main"