Fix some minor issues
This commit is contained in:
parent
96ed423f0a
commit
d26efec86b
2 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "scryfall-py"
|
name = "scryfall-py"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "An async Scryfall API wrapper"
|
description = "An async Scryfall API wrapper"
|
||||||
license = { text = "MIT License" }
|
license = { text = "MIT License" }
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -16,9 +16,15 @@ classifiers = [
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
"Topic :: Utilities",
|
"Topic :: Utilities",
|
||||||
]
|
]
|
||||||
|
authors = [{name="zevaryx", email ="zevaryx@gmail.com"}]
|
||||||
|
|
||||||
dependencies = ["httpx>=0.28.1", "pydantic>=2.10.6"]
|
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]
|
[dependency-groups]
|
||||||
dev = [
|
dev = [
|
||||||
"black>=25.1.0",
|
"black>=25.1.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.1"
|
||||||
|
|
||||||
logger_name = "scryfall"
|
logger_name = "scryfall"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue