[tool.poetry] name = "python-template" version = "0.1.0" description = "" authors = ["Your Name "] [tool.poetry.dependencies] python = ">=3.10.0,<3.11" gunicorn = "^23.0.0" discord-py = "^2.6.4" flask = "^3.1.2" flask-sqlalchemy = "^3.1.1" psycopg2-binary = "^2.9.11" requests = "^2.32.5" [tool.pyright] # https://github.com/microsoft/pyright/blob/main/docs/configuration.md useLibraryCodeForTypes = true [tool.ruff] # https://beta.ruff.rs/docs/configuration/ select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM'] ignore = ['W291', 'W292', 'W293'] [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"