Add pydantic as a required package

This commit is contained in:
2024-01-22 16:18:11 -05:00
parent dbc77df78b
commit 4487eafd47
2 changed files with 137 additions and 2 deletions
+2 -2
View File
@@ -21,11 +21,11 @@ REQUIRES_PYTHON = ">=3.6.0"
VERSION = "0.1.0"
# What packages are required for this module to be executed?
REQUIRED = ["requests"]
REQUIRED = ["requests", "pydantic >= 2.0.0"]
# What packages are optional?
EXTRAS = {
"tests": ["pytest"],
# "tests": ["pytest"],
}
# The rest you shouldn't have to touch too much :)