-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 1.23 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
[project]
name = "recon-magic"
version = "0.1.0"
description = "Smart contract audit workflow automation framework"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.0.0",
]
[project.scripts]
recon-magic-framework = "cli:main"
extract-target-functions = "tools.targeted_functions.extract_target_functions:main"
filter-build-info = "tools.filter_build_info.filter_build_info:main"
order-prerequisite-func = "tools.order_prerequisite_func.order_prerequisite_func:main"
touched-function-identifier = "tools.touched_function_identifier.touched_function_identifier:main"
covg-eval = "tools.covg_eval.covg_eval:main"
covg-scoring = "tools.covg_scoring.covg_scoring:main"
get-latest-coverage = "tools.get_latest_coverage.get_latest_coverage:main"
save-echidna-logs = "tools.save_echidna_logs.save_echidna_logs:main"
merge-paths-prerequisites = "tools.merge_paths_prerequisites.merge_paths_prerequisites:main"
analyze-echidna-output = "tools.analyze_echidna_output.analyze_echidna_output:main"
update-coverage-groups = "tools.update_coverage_groups.update_coverage_groups:main"
[tool.hatch.build.targets.wheel]
packages = ["."]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"