diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b058883 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[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 = [] +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Development Status :: 1 - Planning" +] + +[tool.black] +line-length = 100 |
