Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 69 additions & 65 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,65 +1,69 @@
# Core dependencies
asyncio-mqtt>=0.16.1
websockets>=12.0
aiohttp>=3.9.0

# CLI and utilities
click>=8.1.7
rich>=13.7.0
textual>=1.0.0
questionary>=2.0.1
pyyaml>=6.0.1
tqdm>=4.66.0

# File handling and parsing
pathlib>=1.0.1
python-dotenv>=1.0.0

# Cryptography and security
cryptography>=41.0.0
ecdsa>=0.18.0

# Blockchain interaction
web3>=6.11.0
eth-account>=0.10.0
eth-utils>=4.0.0

# Smart contract analysis tools
# Note: Slither removed in v2.1; pattern-based detectors + Foundry ABI + regex only
# Lock setuptools version to avoid pkg_resources deprecation warning
setuptools<81

# Foundry/Anvil integration
# Install separately: curl -L https://foundry.paradigm.xyz | bash
# PATH setup: export PATH="$HOME/.foundry/bin:$PATH"

# AI and LLM integration
openai>=1.20.0
anthropic>=0.40.0
httpx>=0.27.2
tiktoken>=0.5.0

# Testing
pytest>=7.4.0
pytest-asyncio>=0.21.0
pytest-cov>=4.1.0

# Development tools
black>=23.11.0
isort>=5.12.0
flake8>=6.1.0
mypy>=1.7.0

# Documentation
mkdocs>=1.5.0
mkdocs-material>=9.4.0

# Optional: GPU acceleration for AI models
# torch>=2.1.0
# transformers>=4.35.0

# Web UI
fastapi>=0.115.0
uvicorn[standard]>=0.30.0
jinja2>=3.1.4
python-multipart>=0.0.9
# Core dependencies
asyncio-mqtt>=0.16.1
websockets>=12.0
aiohttp>=3.9.0

# CLI and utilities
click>=8.1.7
rich>=13.7.0
textual>=1.0.0
questionary>=2.0.1
pyyaml>=6.0.1
tqdm>=4.66.0

# File handling and parsing
pathlib>=1.0.1
python-dotenv>=1.0.0

# Cryptography and security
cryptography>=41.0.0
ecdsa>=0.18.0

# Blockchain interaction
web3>=6.11.0
eth-account>=0.10.0
eth-utils>=4.0.0

# Smart contract analysis tools
# Note: Slither removed in v2.1; pattern-based detectors + Foundry ABI + regex only
# Lock setuptools version to avoid pkg_resources deprecation warning
setuptools<81

# Foundry/Anvil integration
# Install separately: curl -L https://foundry.paradigm.xyz | bash
# PATH setup: export PATH="$HOME/.foundry/bin:$PATH"

# AI and LLM integration
openai>=1.20.0
anthropic>=0.40.0
httpx>=0.27.2
tiktoken>=0.5.0

# Testing
pytest>=7.4.0
pytest-asyncio>=0.21.0
pytest-cov>=4.1.0

# Development tools
black>=23.11.0
isort>=5.12.0
flake8>=6.1.0
mypy>=1.7.0

# Documentation
mkdocs>=1.5.0
mkdocs-material>=9.4.0

# Optional: GPU acceleration for AI models
# torch>=2.1.0
# transformers>=4.35.0

# Web UI
fastapi>=0.115.0
uvicorn[standard]>=0.30.0
jinja2>=3.1.4
python-multipart>=0.0.9

# Windows
windows-curses>=2.4.1

Loading