2025-03-19 15:28:30 +08:00
|
|
|
[project]
|
|
|
|
|
name = "cryptomarketparser"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = ""
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "Simon Moisy",email = "simon.moisy@tutanota.com"}
|
|
|
|
|
]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10,<4.0"
|
|
|
|
|
dependencies = [
|
2025-03-21 17:41:38 +08:00
|
|
|
"numpy (>=1.26.0,<2.2.0)",
|
2025-03-19 15:28:30 +08:00
|
|
|
"pandas (>=2.2.3,<3.0.0)",
|
|
|
|
|
"sqlalchemy (>=2.0.39,<3.0.0)",
|
|
|
|
|
"scipy (>=1.15.2,<2.0.0)",
|
|
|
|
|
"matplotlib (>=3.10.1,<4.0.0)",
|
|
|
|
|
"scikit-learn (>=1.6.1,<2.0.0)",
|
|
|
|
|
"ollama (>=0.4.7,<0.5.0)",
|
|
|
|
|
"transformers (>=4.49.0,<5.0.0)",
|
2025-03-25 08:15:27 +08:00
|
|
|
"markdownify (>=1.1.0,<2.0.0)",
|
|
|
|
|
"ccxt (>=4.4.69,<5.0.0)",
|
|
|
|
|
"mplfinance (>=0.12.10b0,<0.13.0)",
|
2025-03-19 15:28:30 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
[[tool.poetry.source]]
|
|
|
|
|
name = "pytorch"
|
|
|
|
|
url = "https://download.pytorch.org/whl/cu121"
|
|
|
|
|
priority = "explicit"
|