-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (92 loc) · 2.27 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (92 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "sibyl"
version = "0.1.0"
description = "AI-Powered Crypto Insights & Trading Dashboard using AI Agents"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.54.0",
"arxiv==2.1.3",
"beautifulsoup4==4.13.4",
"chromadb==0.6.3",
"cryptography==45.0.3",
"duckduckgo-search==8.0.2",
"extra-streamlit-components==0.1.71",
"faiss-cpu==1.10.0",
"fastapi==0.115.12",
"grpcio==1.70.0",
"huggingface-hub==0.29.1",
"langchain==0.3.25",
"langchain-community==0.3.24",
"langchain-openai==0.3.21",
"llama-cpp-python==0.3.9",
"matplotlib==3.10.3",
"nltk==3.9.1",
"numpy==2.3.0",
"openai==1.84.0",
"pandas==2.3.0",
"pillow==11.2.1",
"plotly==6.0.0",
"protobuf==5.29.5",
"pydantic==2.11.5",
"pymupdf==1.26.0",
"python-binance==1.0.27",
"python-dotenv==1.1.0",
"rank-bm25==0.2.2",
"requests==2.32.3",
"sentence-transformers==3.4.1",
"spacy==3.8.4",
"sqlalchemy==2.0.38",
"streamlit==1.45.0",
"sumy==0.11.0",
"ta==0.11.0",
"tinydb==4.8.2",
"torch==2.6.0",
"transformers==4.49.0",
"uvicorn==0.34.3",
"vadersentiment==3.3.2",
"yfinance==0.2.59",
]
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = [
".git",
".github",
"__pycache__",
"build",
"dist",
"*.egg-info",
"*.ipynb",
]
# Enable all error (E) and warning (W) level rules
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"A", # flake8-builtins
"N", # pep8-naming
"UP", # pyupgrade
"YTT", # flake8-2020
"FBT", # flake8-boolean-trap
"Q", # flake8-quotes
"RUF", # ruff-specific rules
]
# Allow autofix for all rules
lint.fixable = ["ALL"]
# Per-file ignores
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # Allow unused imports in __init__.py
"tests/*" = ["S101"] # Allow assert in test files
# isort configuration
[tool.ruff.lint.isort]
known-first-party = ["sibyl"]
# flake8-quotes configuration
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
# McCabe complexity
[tool.ruff.lint.mccabe]
max-complexity = 10