-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (35 loc) · 1.2 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
[project]
name = "solidity-security-scanner"
version = "2.0.0"
description = "AI-powered smart contract security scanner for Solidity, Rust, and Solana"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Maxwell VOSS"}
]
keywords = [
"solidity", "ethereum", "smart-contracts", "security", "blockchain",
"defi", "web3", "solana", "rust", "github-actions", "vulnerability-scanner",
"static-analysis", "slither", "foundry", "gas-optimization", "reentrancy"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/mvmax-dev/solidity-security-scanner"
Repository = "https://github.com/mvmax-dev/solidity-security-scanner"
Issues = "https://github.com/mvmax-dev/solidity-security-scanner/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-v --tb=short"
[tool.flake8]
max-line-length = 127
max-complexity = 10
exclude = [".git", "__pycache__", "dashboard", "venv"]