diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-15 16:55:22 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-15 16:55:22 +0100 |
| commit | 3956b70524a07ea15cbe8913e4722340a60be765 (patch) | |
| tree | b617f07db3cd76de25e408d331a71034f4532b8e /pyproject.toml | |
| parent | 765fe232ac9fded73387d5cb9ba9b0a07f05b4e4 (diff) | |
Added the dependencies in the pyproject.toml
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 |
