-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 993 Bytes
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 993 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
48
49
50
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "financial-ia"
version = "0.1.0"
description = "Financial IA - Latent Market Intelligence (Strates I-IV)"
authors = [{name = "Daniel"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"torch>=2.0",
"pytorch-lightning>=2.0",
"tslearn>=0.6",
"numpy",
"pandas",
"dacite",
"pyyaml",
"tensorboard",
"einops",
"gymnasium>=1.0",
"stable-baselines3>=2.0",
"matplotlib>=3.5",
"mamba-ssm>=2.2",
"causal-conv1d>=1.4",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
]
gcp = [
"google-cloud-storage>=2.0",
"google-cloud-logging>=3.0",
"pyarrow>=14.0",
"aiohttp>=3.9",
"tqdm>=4.60",
"requests>=2.31",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
pythonpath = ["."]