diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index e547e3c..c376afc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,8 @@ classifiers = [ Homepage = "https://gitlab.com/KaranJayachandra/match_up" Issues = "https://gitlab.com/KaranJayachandra/match_up/-/issues" +[project.scripts] +match_up = "match_up:main" [tool.setuptools.packages.find] where = ["src"] @@ -30,5 +32,6 @@ where = ["src"] "templates" = ["*.j2"] "static" = ["*.css", "*.js", "*.png", "*.ico"] -[project.scripts] -match_up = "match_up:main"
\ No newline at end of file +[[tool.mypy.overrides]] +module = ["names.*", "sqlalchemy.*"] +ignore_missing_imports = true
\ No newline at end of file |
