diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2023-10-21 07:44:42 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2023-10-21 07:44:42 +0900 |
commit | 9392391dd580be60cb6e2efc2293db82b9e4badf (patch) | |
tree | 8d8acd78d9e8d0309426870867ea857087758456 /pyproject.toml | |
parent | a632a4ccc505876144ae6ca8b3fd68cdf4bdb64a (diff) | |
download | formbox-5e705c01bd8ed7648e0fe368a6df3a0bbbe8e270.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.toml | 10 |
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" } |