diff --git a/pyproject.toml b/pyproject.toml index 6403e39..050304b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scryfall-py" -version = "0.1.0" +version = "0.1.1" description = "An async Scryfall API wrapper" license = { text = "MIT License" } readme = "README.md" @@ -16,9 +16,15 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities", ] +authors = [{name="zevaryx", email ="zevaryx@gmail.com"}] dependencies = ["httpx>=0.28.1", "pydantic>=2.10.6"] +[project.urls] +Homepage = "https://github.com/zevaryx/scryfall-py" +Repository = "https://github.com/zevaryx/scryfall-py" +Issues = "https://github.com/zevaryx/scryfall-py/issues" + [dependency-groups] dev = [ "black>=25.1.0", diff --git a/scryfall/const.py b/scryfall/const.py index 2e86cb8..aa866cf 100644 --- a/scryfall/const.py +++ b/scryfall/const.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.1.0" +__version__ = "0.1.1" logger_name = "scryfall"