From cab78050064424d31534c3bba9c68080108dacd6 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 22 Nov 2024 09:58:42 -0600 Subject: 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. --- mypy.ini | 3 +++ setup.py | 1 + 2 files changed, 4 insertions(+) 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( -- cgit v1.2.3