diff options
author | Frederick Muriuki Muriithi | 2022-04-27 19:06:45 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-04-27 19:14:37 +0300 |
commit | aadd9aa5dd4c552b573828ddac581a8b7064b0e2 (patch) | |
tree | fbf17e017af4f736ec5ea797cd777396768decfe /mypy.ini | |
parent | 903af1c0b1f2cc695ea4e0c31438f9205571d15d (diff) | |
download | gn-uploader-aadd9aa5dd4c552b573828ddac581a8b7064b0e2.tar.gz |
Enable managing app via setup.py
While the application is developed with GNU Guix, the end user might
not be using it, and therefore, this commit provides a way for the
user to install the application with the usual python package
management systems.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..ba70688 --- /dev/null +++ b/mypy.ini @@ -0,0 +1,10 @@ +[mypy] + +[mypy-flask.*] +ignore_missing_imports = True + +[mypy-pytest.*] +ignore_missing_imports = True + +[mypy-hypothesis.*] +ignore_missing_imports = True
\ No newline at end of file |