about summary refs log tree commit diff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2023-10-21 07:44:42 +0900
committerNguyễn Gia Phong <cnx@loang.net>2023-10-21 07:44:42 +0900
commit9392391dd580be60cb6e2efc2293db82b9e4badf (patch)
tree8d8acd78d9e8d0309426870867ea857087758456 /pyproject.toml
parenta632a4ccc505876144ae6ca8b3fd68cdf4bdb64a (diff)
downloadformbox-9392391dd580be60cb6e2efc2293db82b9e4badf.tar.gz
Replace dependencies 0.4.2
Bleach has been deprecated along with html5lib,
and its replacement nh3 lacks the linkify function,
so mistune is used for markdown for its url plugin.
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 4763535..3786313 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,13 +4,13 @@ build-backend = "flit_core.buildapi"
 
 [project]
 name = "formbox"
-version = "0.4.1"
+version = "0.4.2"
 description = "Format mbox as HTML/XML"
 readme = "README.md"
 requires-python = ">=3.6"
 license = { file = "COPYING" }
-authors = [ { name = "Nguyễn Gia Phong", email = "mcsinyx@disroot.org" } ]
-maintainers = [ { name = "Nguyễn Gia Phong", email = "mcsinyx@disroot.org" } ]
+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",
@@ -20,6 +20,6 @@ classifiers = [
     "Programming Language :: Python",
     "Topic :: Communications :: Email",
     "Topic :: Utilities" ]
-dependencies = [ "bleach", "markdown" ]
-urls = { SourceHut = "https://sr.ht/~cnx/formbox" }
+dependencies = [ "mistune", "nh3" ]
+urls = { Source = "https://trong.loang.net/~cnx/formbox" }
 scripts = { formbox = "formbox:main" }