blob: acfc6be1181669a00ed89c7e03aa30c0018bc425 (
plain)
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
|
[project]
name = "ssg"
version = "0.5.0"
description = "A basic static site generator module"
requires-python = ">= 3.11"
dependencies = ["Jinja2 >= 3,< 4"]
authors = [{name = "Tomasz Kramkowski", email = "tomasz@kramkow.ski"}]
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = { Source = "https://the-tk.com/cgit/ssg/" }
[tool.flit.sdist]
exclude = ["**/.gitignore"]
[tool.isort]
profile = "black"
[tool.pyright]
strict = ["**/*.py"]
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
|