Files
pumpfun-bonkfun-bot/pyproject.toml
T

93 lines
1.8 KiB
TOML
Raw Normal View History

2025-03-17 15:47:28 +00:00
[project]
name = "pump_bot"
version = "2.0"
description = "Trade tokens on pump.fun"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"base58>=2.1.1",
"borsh-construct>=0.1.0",
"construct>=2.10.67",
"construct-typing>=0.5.2",
"solana==0.36.6",
"solders>=0.26.0",
"websockets>=15.0",
"python-dotenv>=1.2.1",
2025-03-17 15:47:28 +00:00
"aiohttp>=3.11.13",
2025-04-14 15:02:52 +00:00
"grpcio>=1.71.0",
"grpcio-tools>=1.71.0",
"protobuf>=5.29.4",
2025-04-24 20:32:47 +00:00
"pyyaml>=6.0.2",
"uvloop>=0.21.0; sys_platform != 'win32'",
"winloop>=0.1.0; sys_platform == 'win32'",
2025-03-17 15:47:28 +00:00
]
[project.optional-dependencies]
dev = [
"ruff>=0.10.0"
]
[project.scripts]
2025-04-24 20:32:47 +00:00
pump_bot = "bot_runner:main"
2025-03-17 15:47:28 +00:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
2025-03-05 16:44:55 +00:00
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
2025-03-05 07:03:32 +00:00
line-length = 88
indent-width = 4
2025-03-05 16:44:55 +00:00
target-version = "py311"
2025-03-05 07:03:32 +00:00
2025-03-05 16:44:55 +00:00
[tool.ruff.lint]
select = [
"E", "F", "I", "UP", "N", "B", "A", "C4", "T10", "ARG", "PTH",
"ANN", # type annotations
"S", # security best practices
"BLE", # blind except statements
"FBT", # boolean trap parameters
"C90", # complexity metrics
"TRY", # exception handling best practices
"SLF", # private member access
"TCH", # type checking issues
"RUF", # Ruff-specific rules
"ERA", # eradicate commented-out code
"PL", # pylint conventions
]
2025-03-05 16:44:55 +00:00
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
2025-03-17 15:47:28 +00:00
indent-style = "space"
2025-04-14 15:02:52 +00:00
line-ending = "auto"