diff options
author | Frederick Muriuki Muriithi | 2024-11-22 09:58:42 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-11-22 10:17:19 -0600 |
commit | cab78050064424d31534c3bba9c68080108dacd6 (patch) | |
tree | 4425e169f87921d75a4c2e699b5bb7beea68dd2e | |
parent | 0e8d6049bfb693531f6f8f0f3e8c7fbbb3e63e24 (diff) | |
download | gn-auth-cab78050064424d31534c3bba9c68080108dacd6.tar.gz |
Add `gn-libs` as new dependency.
Bring in the `gn-libs` library as a dependency to help with avoiding replication of code across the various GeneNetwork projects — with this in place, we can now reuse previously written code that is common across the various projects, which helps with reducing the maintenance burden.
-rw-r--r-- | mypy.ini | 3 | ||||
-rwxr-xr-x | setup.py | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini index 15c4b44..89a6200 100644 --- a/mypy.ini +++ b/mypy.ini @@ -71,4 +71,7 @@ ignore_missing_imports = True ignore_missing_imports = True [mypy-flask_cors.*] +ignore_missing_imports = True + +[mypy-gn_libs.*] ignore_missing_imports = True \ No newline at end of file diff --git a/setup.py b/setup.py index 023c2a2..c1e4fd5 100755 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ setup(author="Frederick M. Muriithi", "requests==2.25.1" "flask-cors==3.0.9" "xapian-bindings" + "gn-libs>=0.0.0" ], include_package_data=True, packages=find_packages( |