/ pyproject.toml
pyproject.toml
1 [build-system] 2 requires = ["setuptools"] 3 build-backend = "setuptools.build_meta" 4 5 [project] 6 name = "htmldown" 7 version = "0.1.0" 8 requires-python = ">=3.11" 9 description = "python script to build static html from markdown" 10 authors = [{name = "blltrx", email = "blltrx@roseis.gay"}] 11 readme = "README.md" 12 license = "MIT" 13 urls.Repository = "https://git.gay/blltrx/htmldown" 14 dependencies = [ 15 "markdown" 16 ] 17 18 [project.scripts] 19 htmldown = "htmldown:main"