Spaces:
Runtime error
Runtime error
| [project] | |
| name = "autotrain-gradio-mcp" | |
| version = "0.1.0" | |
| description = "AutoTrain Gradio MCP Server - All-in-One Solution" | |
| authors = [ | |
| {name = "AutoTrain Team", email = "autotrain@example.com"} | |
| ] | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| # Core dependencies | |
| "gradio[mcp]>=5.0.0", | |
| "pandas>=2.0.0", | |
| "wandb>=0.16.0", | |
| # MCP and async support | |
| "httpx>=0.25.0", | |
| "aiofiles>=23.0.0", | |
| # Data handling | |
| "datasets>=2.0.0", | |
| "torch>=2.0.0", | |
| "transformers>=4.30.0", | |
| # Optional ML frameworks | |
| "accelerate>=0.20.0", | |
| "peft>=0.4.0", | |
| "bitsandbytes>=0.41.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=7.0.0", | |
| "black>=23.0.0", | |
| "flake8>=6.0.0", | |
| "mypy>=1.0.0", | |
| ] | |
| [build-system] | |
| requires = ["setuptools>=65.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project.scripts] | |
| autotrain-gradio = "autotrain_gradio:main" | |
| [tool.black] | |
| line-length = 88 | |
| target-version = ['py310'] | |
| [tool.mypy] | |
| python_version = "3.10" | |
| warn_return_any = true | |
| warn_unused_configs = true | |