-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 2.11 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
[build-system]
requires = ["setuptools>=65.5.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mle-agent"
version = "0.4.3"
description = "MLE-agent: An agent to automate your MLE processes"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
{ name = "Yizheng Huang", email = "huangyz0918@gmail.com" },
{ name = "Huaizheng Zhang" },
]
keywords = ["LLM", "deep learning", "MLOps", "shell", "neural networks"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"rich>=13.6.0",
"click>=7.1.1",
"tantivy==0.24.0",
"py7zr~=1.0",
"openai~=1.70.0",
"pyyaml~=6.0",
"kaggle>=1.5.12",
"fastapi>=0.104.0",
"uvicorn~=0.28.0",
"requests~=2.32.3",
"GitPython~=3.1",
"questionary~=1.10.0",
"pandas>=2.2.2",
"tavily-python~=0.6.0",
"langfuse~=2.36.2",
"google-api-python-client~=2.143.0",
"google-auth-httplib2~=0.2.0",
"google-auth-oauthlib~=1.2.1",
"google-genai~=1.25.0",
"lancedb==0.15.0",
"tree-sitter>=0.21.3",
"mem0ai~=0.1.114",
"pip>=23.3.1",
"setuptools>=65.5.0",
]
[project.optional-dependencies]
bench = [
"mlebench @ git+https://github.com/openai/mle-bench.git@main ; python_version >= '3.11' and python_version < '3.13'",
]
[project.urls]
Homepage = "https://github.com/MLSysOps/MLE-agent"
Download = "https://github.com/MLSysOps/MLE-agent/archive/refs/heads/main.zip"
[project.scripts]
mle-agent = "mle.cli:cli"
mle = "mle.cli:cli"
[tool.setuptools.packages.find]
include = ["mle*", "exp*"]
[tool.setuptools.package-data]
# Include all files in the package directory
mle = ["py.typed", "data/*", "config/*", "templates/*"]
[tool.uv]
override-dependencies = [
# Skip the package only on Windows – the rule is ignored everywhere else
"tensorflow-io-gcs-filesystem >= 0.37 ; sys_platform != 'win32'",
]