- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
28 lines
546 B
Plaintext
28 lines
546 B
Plaintext
# AITBC Blockchain Node Requirements
|
|
# Generated from pyproject.toml dependencies
|
|
|
|
# Core Framework
|
|
fastapi>=0.111.0
|
|
uvicorn[standard]>=0.30.0
|
|
|
|
# Data & Database
|
|
sqlmodel>=0.0.16
|
|
sqlalchemy>=2.0.30
|
|
alembic>=1.13.1
|
|
aiosqlite>=0.20.0
|
|
|
|
# WebSocket Support
|
|
websockets>=12.0
|
|
|
|
# Validation & Configuration
|
|
pydantic>=2.7.0
|
|
pydantic-settings>=2.2.1
|
|
|
|
# Performance
|
|
orjson>=3.10.0
|
|
|
|
# Local Dependencies
|
|
# Note: These should be installed in development mode with:
|
|
# pip install -e ../../packages/py/aitbc-crypto
|
|
# pip install -e ../../packages/py/aitbc-sdk
|