-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 900 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 900 Bytes
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
[project]
name = "soothsayer"
version = "0.0.0"
description = "Solana Fair Value Oracle — Phase 0 validation workspace"
requires-python = ">=3.12,<3.13"
dependencies = [
"numpy>=1.26",
"pandas>=2.2",
"scipy>=1.13",
"statsmodels>=0.14",
"yfinance>=0.2.50",
"requests>=2.32",
"solders>=0.23",
"base58>=2.1",
"python-dotenv>=1.0",
"pyarrow>=16.0",
"tqdm>=4.66",
"matplotlib>=3.9",
"seaborn>=0.13",
"jupyter>=1.1",
"ipykernel>=6.29",
"anchorpy>=0.20",
"python-snappy>=0.7.3",
"zstandard>=0.25.0",
"tabulate>=0.10.0",
"lxml>=6.1.0",
]
[dependency-groups]
dev = [
"arch>=8.0.0",
"ruff>=0.6",
]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/soothsayer"]
[tool.ruff]
line-length = 100
target-version = "py312"