-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sphc"
version = "1.0.1"
authors = [
{ name="Shekhar Tiwatne", email="pythonic@gmail.com" },
]
description = "Simple Pythonic HTML Creator"
readme = "README.md"
requires-python = ">=3"
license = { text = "MIT" }
keywords = ["html", "pythonic", "html-generator", "web-development"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: HTML",
]
[project.urls]
"Homepage" = "https://shon.github.io"
"Source" = "https://github.com/shon/sphc"