blob: 440dc07ad6829bcb02d3731f05f6eeb22fb7e7fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[project]
name = "htmtl"
version = "0.1.0"
description = "A templating language that is both a superset and subset of HTML."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Asko Nõmm", email = "asko@nmm.ee" }
]
dependencies = [
"dompa>0.6.1"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning"
]
[tool.black]
line-length = 100
|