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

[tool.black]
line-length = 100