CoolFace
Modelpublic

spreadsheethurts/backend

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
pyproject.toml54 linesDownload Raw Back to root
1[project]2name = "wizard"3version = "0.1.0"4description = "Add your description here"5readme = "README.md"6requires-python = ">=3.11"7dependencies = [8    "a2wsgi>=1.10.10",9    "appscript>=1.3.0;sys_platform == 'darwin'",10    "backoff>=2.2.1",11    "convertdate>=2.4.0",12    "ezodf>=0.3.2",13    "dotenv>=0.9.9",14    "fastapi>=0.115.12",15    "google-api-python-client>=2.166.0",16    "gspread-asyncio>=2.0.0",17    "openai>=1.90.0",18    "openpyxl>=3.1.5",19    "pandas>=2.2.3",20    "pyexcel-ods3>=0.6.1",21    "pyfunctional>=1.5.0",22    "python-multipart>=0.0.20",23    "redis>=6.1.0",24    "rich>=14.0.0",25    "sqlalchemy>=2.0.40",26    "sqlalchemy-utils>=0.41.2",27    "typer>=0.15.2",28    "uvicorn>=0.34.1",29    "xlsxwriter>=3.2.2",30    "socksio>=1.0.0",31]32 33[dependency-groups]34dev = [35    "pytest-repeat>=0.9.4",36    "pytest>=8.3.5",37    "ipdb>=0.13.13",38    "graphviz>=0.20.3",39    "fakeredis>=2.29.0",40    "pytest-postgresql[docker]>=7.0.2",41    "pytest-docker>=3.2.2",42    "psycopg[binary]>=3.2.9",43    "psycopg2-binary>=2.9.10",44    "ipykernel>=6.29.5",45    "ipywidgets>=8.1.7",46    "itables>=2.4.2",47    "dspy>=2.6.27",48]49 50[tool.ruff]51# allow star imports and referencing variables from them52# allow lambda functions to be used as function objects53ignore = ["F403", "F405", "E731"]54