File size: 2,204 Bytes
331f4b7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "reproagent"
version = "1.0.0"
description = "AI agent for automatically reproducing machine learning research papers"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
    {name = "ReproAgent Team", email = "team@reproagent.ai"}
]
keywords = [
    "machine-learning",
    "research",
    "reproduction",
    "ai-agent",
    "reinforcement-learning"
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Topic :: Scientific/Engineering :: Artificial Intelligence"
]

dependencies = [
    "gymnasium>=0.29.0",
    "numpy>=1.24.0",
    "gradio>=4.0.0",
    "python-dotenv>=1.0.0",
    "PyPDF2>=3.0.0",
    "pdfplumber>=0.10.0",
    "GitPython>=3.1.40",
    "requests>=2.31.0",
    "tqdm>=4.66.0",
]

[project.optional-dependencies]
llm = [
    "groq>=0.4.0",
    "openai>=1.0.0",
    "huggingface-hub>=0.19.0",
]
ml = [
    "torch>=2.0.0",
    "pandas>=2.0.0",
]
dev = [
    "pytest>=7.0.0",
    "black>=23.0.0",
    "ruff>=0.1.0",
    "mypy>=1.0.0",
]
all = [
    "reproagent[llm,ml,dev]",
]

[project.urls]
Homepage = "https://github.com/reproagent/reproagent"
Documentation = "https://github.com/reproagent/reproagent#readme"
Repository = "https://github.com/reproagent/reproagent"
Issues = "https://github.com/reproagent/reproagent/issues"

[project.scripts]
reproagent = "inference:main"
reproagent-validate = "validate:main"

[tool.setuptools]
packages = ["reproagent", "agents", "graders", "utils", "server", "baseline"]

[tool.setuptools.package-data]
reproagent = ["*.yaml"]

[tool.black]
line-length = 100
target-version = ['py310']

[tool.ruff]
line-length = 100
target-version = "py310"

[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false