about summary refs log tree commit diff
path: root/pyproject.toml
blob: eb08fab7c39f1bc1bff175a2c7dc9dd3317daf7d (plain) (blame)
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
[build-system]
requires = [ "flit_core >=3.2,<4" ]
build-backend = "flit_core.buildapi"

[project]
name = "formbox"
version = "0.4.3"
description = "Format mbox as HTML/XML"
readme = "README.md"
requires-python = ">=3.6"
license = { file = "COPYING" }
authors = [ { name = "Nguyễn Gia Phong", email = "cnx@loang.net" } ]
maintainers = [ { name = "Nguyễn Gia Phong", email = "cnx@loang.net" } ]
keywords = [ "email", "format", "html", "mbox", "template", "xml" ]
classifiers = [
    "Development Status :: 4 - Beta",
    "Environment :: Console",
    "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Topic :: Communications :: Email",
    "Topic :: Utilities" ]
dependencies = [ "mistune", "nh3" ]
urls = { Source = "https://trong.loang.net/~cnx/formbox" }
scripts = { formbox = "formbox:main" }