This commit is contained in:
Waylon Walker 2023-06-20 12:28:25 -05:00
parent 78cc5ff0cd
commit 70f4a89e30
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
10 changed files with 564 additions and 182 deletions

View file

@ -24,36 +24,51 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"python-socketio[client]",
"fastapi-socketio",
"psycopg2-binary",
'pygame',
'black',
'alembic',
'pygame',
'pyinstaller',
"pyflyby",
"python-socketio[client]",
"anyconfig",
"copier",
"engorgio",
"fastapi",
"httpx",
"passlib[bcrypt]",
"polyfactory",
"psycopg2",
"python-jose[cryptography]",
"python-multipart",
"pydantic[dotenv]",
"pyflyby",
"pyinstaller",
"rich",
"sqlmodel",
"textual",
"toml",
"trogon",
"typer",
"uvicorn[standard]",
]
dynamic = ["version"]
[project.optional-dependencies]
game = [
"noise",
"pygame",
"polyfactory",
"faker",
]
api = [
"fastapi-socketio",
"passlib[bcrypt]",
"psycopg2",
"psycopg2-binary",
"python-jose[cryptography]",
"python-multipart",
"uvicorn[standard]",
]
manage = [
"alembic",
"polyfactory",
"faker",
]
all = [
"learn_sql_model[game, api, manage]",
]
[project.urls]
Documentation = "https://github.com/waylonwalker/learn-sql-model#readme"
Issues = "https://github.com/waylonwalker/learn-sql-model/issues"