my eye

Update project metadata

Committed 1d7ff8

--- a/README.md
+++ b/README.md

     # TODO >>> page.representative_feed["items"][0]["name"]
     # TODO ['foo']
 
-Based upon [`mf2py`][1] and [`mf2util`][2].
+Based upon [`mf2util`][1].
 
 [0]: https://microformats.org/wiki/microformats
-[1]: https://github.com/microformats/mf2py
-[2]: https://github.com/kylewm/mf2util
+[1]: https://github.com/kylewm/mf2util

--- a/mf/__init__.py
+++ b/mf/__init__.py

 """
-Microformats utilities.
+Tools for microformats production, consumption and analysis.
 
-Microformats2 is a general way to mark up any HTML document with
+Microformats are a general way to mark up any HTML document with
 classes and propeties. This module uses domain-specific assumptions
-about the classes (specifically h-entry and h-event) to extract
+about the classes (specifically h-card, h-entry and h-event) to extract
 certain interesting properties.
 
 """

--- a/pyproject.toml
+++ b/pyproject.toml

+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"
+
 [tool.poetry]
 name = "microformats"
 version = "0.5.0"
 description = "tools for microformats production, consumption and analysis"
 readme = "README.md"
 keywords = ["IndieWeb", "microformats"]
-homepage = "https://ragt.ag/code/python-microformats"
+homepage = "https://ragt.ag/code/projects/python-microformats"
 authors = ["Angelo Gladding <angelo@ragt.ag>"]
 license = "BSD-3-Clause"
 packages = [{include="mf"}]
 [tool.poetry.scripts]
 mf = "mf:main"
 
+[[tool.poetry.source]]
+name = "main"
+url = "https://ragt.ag/code/pypi"
+
 [tool.poetry.dependencies]
 python = ">=3.10,<3.11"
 beautifulsoup4 = "^4.11.2"
 lxml = "^4.9.2"
 gmpg = {path="../gmpg", develop=true}
 easyuri = {path="../easyuri", develop=true}
-
-# [[tool.poetry.source]]
-# name = "main"
-# url = "https://ragt.ag/code/pypi"
-
-[build-system]
-requires = ["poetry-core>=1.0.0"]
-build-backend = "poetry.core.masonry.api"