From d26efec86b0229db954c16796b606048c267e7d6 Mon Sep 17 00:00:00 2001 From: zevaryx Date: Sat, 1 Mar 2025 20:36:56 -0700 Subject: [PATCH] Fix some minor issues --- pyproject.toml | 8 +++++++- scryfall/const.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) 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"