-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
130 lines (118 loc) · 2.7 KB
/
pyproject.toml
File metadata and controls
130 lines (118 loc) · 2.7 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autogluon.assistant"
version = "1.1.0"
description = "Multi Agent System for Multimodal ML Automation"
readme = "README.md"
requires-python = ">=3.10,<3.13"
authors = [
{ name = "AutoGluon Community" }
]
dependencies = [
"langgraph",
"chardet>=5.2.0",
"FlagEmbedding>=1.3.5",
"transformers>=4.44.2,<4.49.0", # FlagEmbedding uses is_torch_fx_available removed in 4.49
"faiss-cpu",
"importlib-resources>=6.4.5",
"langchain>=0.3.3",
"langchain_openai>=0.2.2",
"langchain-anthropic>=0.3.15",
"langchain_aws>=0.2.29",
"pydantic>=2.9.2",
"hydra-core",
"matplotlib>=3.9.2",
"typer>=0.12.5",
"rich>=13.8.1",
"s3fs",
"flask>=2.2",
"fsspec",
"joblib>=1.4.2",
"python-calamine",
"tenacity>=8.2.2",
"torch",
"torchaudio",
"torchvision",
"pandas>=2.2",
"reportlab>=4.4.3",
"streamlit>=1.37",
"streamlit-aggrid>=1.0.2",
"streamlit-extras>=0.4",
"psutil>=5.9.8",
"peft>=0.15.2",
"opencv-python",
"fastmcp==2.8.1",
"aiohttp>=3.8.0",
"requests>=2.28.0",
"boto3>=1.28.0",
"mcp>=0.1.0",
]
[project.scripts]
aga = "autogluon.assistant.cli.app:app"
mlzero = "autogluon.assistant.cli.app:app"
mlzero-backend = "autogluon.assistant.webui.backend.app:main"
mlzero-frontend = "autogluon.assistant.webui.runner:run_frontend"
mlzero-mcp-server = "autogluon.mcp.server.runner:main"
mlzero-mcp-client = "autogluon.mcp.client.server:main"
[project.optional-dependencies]
dev = [
"black>=24",
"GitRepo>=1",
"pytest>=7",
"pytest-asyncio>=0.21.0",
"isort",
"ruff==0.4",
]
[project.urls]
Homepage = "https://github.com/autogluon/autogluon-assistant"
[tool.setuptools.packages.find]
where = ["src"]
include = ["autogluon.assistant*", "autogluon.mcp*"]
namespaces = true
[tool.setuptools.package-data]
"autogluon.assistant" = [
"configs/*.yaml",
"webui/static/*",
"webui/style.css",
"tools_registry/**/*",
]
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--strict-markers"
xfail_strict = true
[tool.black]
line-length = 119
target-version = ['py310', 'py311']
[tool.isort]
known_first_party = "autogluon.assistant"
known_third_party = [
"autogluon",
"joblib",
"langchain",
"numpy",
"omegaconf",
"openai",
"pandas",
"psutil",
"pydantic",
"pytest",
"requests",
"scipy",
"sklearn",
"tqdm",
]
line_length = 119
profile = "black"
[tool.codespell]
skip = ".git,*.pdf,*.svg,*.ipynb,*.csv,"
[tool.ruff]
lint.ignore = [
"E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def`
"E722", # Do not use bare `except`
]
extend-exclude = ["__init__.py"]
[tool.mypy]
ignore_missing_imports = true