summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: dbb679662205971ed5aed9e35f0f1e9d01b9eed1 (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.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