-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (120 loc) · 3.26 KB
/
pyproject.toml
File metadata and controls
131 lines (120 loc) · 3.26 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
131
[project]
name = "archimedes-prototype"
version = "0.2.7.16"
description = "♨️ GatlingX Hackbot for hacking Foundry-based github repos"
dependencies = [
"tqdm>=4.66.5",
"javascript>=1!1.2.1",
"setuptools>=72.1.0",
"openai>=1.38.0",
"chardet>=5.2.0",
"tiktoken>=0.7.0",
"requests>=2.32.3",
"psutil>=6.0.0",
"eth-tester>=0.12.0b1",
"mock>=5.0.2",
"ruff>=0.5.6",
"numpy<2.0.0",
"python-dotenv>=1.0.1",
"langchain-openai>=0.3.6",
"langchain>=0.3.19",
"langchain-community>=0.3.19",
"chromadb>=0.5.5",
"py-solc-x>=2.0.3",
"langchain-chroma>=0.1.2",
"black>=24.8.0",
"flask>=3.0.3",
"pandas>=2.3.1",
"pandas-stubs>=2.3.0.250703",
"flask-cors>=5.0.0",
"termcolor>=2.4.0",
"human-id>=0.2.0",
"pytest>=7.2.1",
"solc-select>=1.0.4",
"hypercorn>=0.17.3",
"asgiref>=3.8.1",
"quart>=0.19.6",
"quart-cors>=0.7.0",
"aiopath>=0.7.7",
"slack-sdk>=3.33.1",
"flask-sqlalchemy>=3.1.1",
"psycopg2-binary>=2.9.9",
"stripe>=11.1.0",
"gitpython>=3.1.43",
"httpx>=0.27.2",
"pygithub>=2.4.0",
"jq>=1.8.0",
"docker>=7.1.0",
"pydantic>=2.9.2",
"seaborn>=0.13.2",
"loguru>=0.7.2",
"quart-rate-limiter>=0.12.0",
"flask-limiter>=3.8.0",
"tomli>=2.1.0",
"langchain-anthropic>=0.3.0",
"flufl-lock>=8.1.0",
"tenacity>=9.0.0",
"scrapegraphai==1.37.0",
"firecrawl>=1.10.2",
"gunicorn[extra]>=22.0.0",
"gevent>=24.11.1",
"dspy>=3.0.0b1",
"pytype>=2024.10.11",
"vulture>=2.14",
"sqlalchemy-stubs>=0.4",
"sqlalchemy[asyncio]>=2.0.41",
"langfuse>=2.59.7",
"basedpyright>=1.29.1",
"sentry-sdk[flask,sqlalchemy,quart]>=2.27.0",
"solidity-parser @ git+https://github.com/GatlingX/solidity-parser.git@main",
"aiofiles~=23.2.1",
"litellm>=1.71.1",
"notion-client>=2.3.0",
"agentql>=1.11.1",
"pytest-xdist>=3.7.0",
"pypandoc-binary>=1.15",
"jinja2>=3.1.6",
"asyncpg>=0.30.0",
"alembic>=1.14.0",
]
readme = "README.md"
requires-python = ">= 3.12"
#
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"black",
"hanging-threads>=2.0.7",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/archimedes_prototype"]
[tool.ruff]
[tool.pyright]
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
include = ["hackbot", "api", "common", "alembic"]
ignore = ["hackbot/experiments/**", "deps/**", "hackbot/evals/**", "hackbot/tests/**", "hackbot/experiments/**"]
reportMissingTypeStubs = true
venvPath = ".venv"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
# See https://docs.pytest.org/en/stable/reference/reference.html
pythonpath = [
".",
]
norecursedirs = ["*.egg", ".*", "_darcs", "build", "CVS", "dist", "node_modules", "venv", "{arch}", "deps"]
[tool.vulture]
exclude = ["hackbot/experiments/", "deps/", "hackbot/tests/", "hackbot/contest_debug.py", "hackbot/evals/", "api/tests/"]
ignore_decorators = ["@app.route", "@field_validator"]
ignore_names = ["app"]
make_whitelist = false
min_confidence = 60
paths = ["hackbot", "api", "common"]
sort_by_size = true