diff --git a/pyproject.toml b/pyproject.toml index cf36321..288db13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,23 @@ name = "bggpipe" dynamic = ["version"] description = "Shelf-to-BGG collection pipeline: photos in, BoardGameGeek collection out" +readme = "README.md" license = "MIT" license-files = ["LICENSE"] requires-python = ">=3.12" +authors = [{ name = "Eric Wagoner", email = "eric@ericwagoner.com" }] +keywords = ["boardgamegeek", "bgg", "board-games", "collection", "vision", "cataloging"] +classifiers = [ + "Development Status :: 4 - Beta", + "Environment :: Console", + "Environment :: Web Environment", + "Intended Audience :: End Users/Desktop", + "Operating System :: MacOS", + "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3.12", + "Topic :: Games/Entertainment :: Board Games", +] + dependencies = [ "typer>=0.12", "httpx>=0.27", @@ -22,6 +36,11 @@ dependencies = [ "qrcode>=8.2", ] +[project.urls] +Homepage = "https://kestrelsnest.social" +Repository = "https://git.kestrelsnest.social/eric/bggpipe" +Documentation = "https://git.kestrelsnest.social/eric/bggpipe/src/branch/main/docs/guide.md" + [project.scripts] bggpipe = "bggpipe.cli:app"