forked from polymarket-developers/mkzmbd4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 780 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 780 Bytes
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
[project]
name = "solidity-cot-auditor"
version = "0.1.0"
description = "Multi-role chain-of-thought LLM auditing on top of Slither output."
authors = [{name = "Aarav Butani"}]
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
readme = "README.md"
dependencies = [
"requests>=2.28",
]
[project.optional-dependencies]
dev = ["pytest>=7", "ruff>=0.4", "mypy>=1.6"]
slither = ["slither-analyzer>=0.10"]
[project.scripts]
solidity-cot = "solidity_cot.__main__:main"
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "C4", "RUF"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"