/
fgtmenow
/
tb
Обзор
Документация
Войти
/
fgtmenow
/
tb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
pyproject.toml
37 строк
813 B
Azarev Artem
Добавлена база знаний по стратегии Smart Money Trading, включая архитектуру, терминологию и торговые стратегии. Реализованы интерфейсы для типизации компонентов торгового бота и шаблон для торговых стратегий.
17 янв 2026, 03:39
17 янв 2026, 03:39
ab5fefa
Код
Авторство
О чём код?
[project] name = "trading-bot" version = "0.1.0" description = "Trading bot for cryptocurrency" requires-python = ">=3.9" dependencies = [ "pybit==5.13.0", "pandas==2.3.3", "numpy==2.4.1", "pycryptodome==3.23.0", "certifi==2026.1.4", "plotly==6.5.2", "tqdm==4.67.1", "python-dotenv>=1.0.0", ] [project.optional-dependencies] dev = [ "pytest", ] [build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools] package-dir = {"" = "."} [tool.setuptools.packages.find] include = ["bot*", "analyze*", "_common*"] exclude = ["__test*", "tests*"] [tool.pytest.ini_options] testpaths = ["__test", "tests"] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"]