diff options
author | Frederick Muriuki Muriithi | 2024-11-21 13:44:53 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-11-21 13:45:31 -0600 |
commit | 4e60c31520a14b843767cb1ad692441ca5614f8b (patch) | |
tree | 5d6b2c26501f52693406d50c325765e6d2405c0f | |
parent | c1d8615bb045acc716880805d88193fdbb160279 (diff) | |
download | gn-libs-4e60c31520a14b843767cb1ad692441ca5614f8b.tar.gz |
Add `authlib` and `pymonad` as dependencies.
-rw-r--r-- | mypy.ini | 6 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -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" |