forked from lessonomicon/mccole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.21 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mccole"]
[tool.setuptools.package-data]
mypkg = ["*.css", "*.js", "*.html"]
[project]
name = "mccole"
version = "0.2.12"
authors = [
{name = "Greg Wilson", email = "[email protected]"},
]
maintainers = [
{name = "Greg Wilson", email = "[email protected]"},
]
description = "Simple template for static web sites"
keywords = ["static site generator"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4>=4.12.3",
"esprima>=4.0.1",
"html5validator>=0.4.2",
"jinja2>=3.1.4",
"markdown>=3.6",
"prettytable>=3.11",
"ruff>=0.6.0",
"tomli>=2.0.1",
]
[project.optional-dependencies]
docs = [
"markdown-include",
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
]
[project.scripts]
mccole = "mccole:clui.main"
[tool.mccole]
skips = ["dist", "mccole.egg-info"]
[tool.mccole.renames]
"CODE_OF_CONDUCT.md" = "code_of_conduct.md"
"CONTRIBUTING.md" = "contributing.md"
"LICENSE.md" = "license.md"
"README.md" = "index.md"