diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 45 |
1 files changed, 11 insertions, 34 deletions
diff --git a/pyproject.toml b/pyproject.toml index c376afc..8b2be0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,37 +1,14 @@ -[build-system] -requires = ["setuptools>=64", "setuptools_scm>=8"] -build-backend = "setuptools.build_meta" - [project] -name = "match_up" -dynamic = ["version"] -dependencies = ["flask", "waitress", "pandas", "sqlalchemy", "names"] -authors = [ - { name="Karan Jayachandra", email="mail@karanjayachandra.com" }, -] -description = "A small web application for matchmaking" +name = "match-up" +version = "0.1.0" +description = "Add your description here" readme = "README.md" -requires-python = ">=3.10" -classifiers = [ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", +requires-python = ">=3.12" +dependencies = [ + "flask>=3.1.1", + "flask-migrate>=4.1.0", + "flask-sqlalchemy>=3.1.1", + "gunicorn>=23.0.0", + "names>=0.3.0", + "pandas>=2.3.1", ] - -[project.urls] -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"] - -[tool.setuptools.package-data] -"templates" = ["*.j2"] -"static" = ["*.css", "*.js", "*.png", "*.ico"] - -[[tool.mypy.overrides]] -module = ["names.*", "sqlalchemy.*"] -ignore_missing_imports = true
\ No newline at end of file |
