aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mypy.ini6
-rw-r--r--pyproject.toml2
2 files changed, 8 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index acf7e33..2373597 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -2,4 +2,10 @@
mypy_path = stubs
[mypy-MySQLdb.*]
+ignore_missing_imports = True
+
+[mypy-authlib.*]
+ignore_missing_imports = True
+
+[mypy-pymonad.*]
ignore_missing_imports = True \ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index 9b8d25f..0f70895 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,6 +9,8 @@ name = "gn-libs"
dynamic = []
version = "0.0.0"
dependencies = [
+ "authlib",
+ "pymonad",
"mysqlclient>=2.0.1"
]
requires-python = ">=3.10"