diff --git a/.github/mypy/mypy.ini b/.github/mypy/mypy.ini new file mode 100644 index 00000000..2718b72e --- /dev/null +++ b/.github/mypy/mypy.ini @@ -0,0 +1,19 @@ +[mypy] + +[mypy-halo.*] +ignore_missing_imports = True + +[mypy-tqdm.*] +ignore_missing_imports = True + +[mypy-viv_utils.*] +ignore_missing_imports = True + +[mypy-smda.*] +ignore_missing_imports = True + +[mypy-flirt.*] +ignore_missing_imports = True + +[mypy-idc.*] +ignore_missing_imports = True \ No newline at end of file diff --git a/setup.py b/setup.py index f6236924..354f07fd 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,9 @@ setuptools.setup( "pycodestyle==2.7.0", "black==21.5b2", "isort==5.8.0", + ], + "mypy": [ + "types-colorama", ] }, zip_safe=False,