summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 92eaac5b69787048cad67b54a4432f373aa6a41d (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.2.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.9.0",
]
classifiers = [
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: MIT License",
  "Operating System :: OS Independent",
  "Development Status :: 1 - Planning"
]

[tool.black]
line-length = 100