File size: 1,055 Bytes
29272e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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