29 lines
685 B
TOML
29 lines
685 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "solana-proxy"
|
|
version = "0.1.0"
|
|
description = "A Python-based reverse proxy for Solana RPC endpoints with automatic failover and caching"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"aiohttp==3.9.0",
|
|
"python-dotenv==1.0.0",
|
|
"diskcache==5.6.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["main", "router", "providers", "errors", "cache", "http_proxy", "ws_proxy", "normalizer"]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"aiohttp-client-manager>=1.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
solana-proxy = "main:main"
|