-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (76 loc) · 1.55 KB
/
pyproject.toml
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
[tool.poetry]
name = "wqu_capstone"
version = "0.1.0"
description = ""
authors = ["Andrea Dalseno, Sanchit Jain, Vsevolod CherepanovS"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.dependencies]
python = "3.11.6"
dvc = "^2.10.0"
hydra-core = "^1.1.1"
pdoc3 = "^0.10.0"
pandas = "^2.1.4"
numpy = "^1.26.2"
scipy = "^1.11.4"
statsmodels = "^0.14.0"
numba = "^0.58.1"
matplotlib = "^3.8.2"
seaborn = "^0.13.0"
scikit-learn = "^1.3.2"
yfinance = "^0.2.33"
ipykernel = "^6.27.1"
dvc-s3 = "^2.23.0"
requests = "^2.31.0"
pywavelets = "^1.5.0"
stochastic = {path = "src/stochastic"}
python-dotenv = "^1.0.0"
ipywidgets = "^8.1.1"
fbm = "^0.3.0"
hurst = "^0.0.5"
catboost = "^1.2.2"
optuna = "^3.5.0"
ydata-profiling = {path = "src/ydata-profiling"}
lightgbm = "^4.3.0"
notebook = "^7.1.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pre-commit = "^2.17.0"
[tool.poetry.group.dev.dependencies]
sphinx-rtd-theme = "^2.0.0"
hurst = "^0.0.5"
fbm = "^0.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
ignore = ["E501"]
select = ["B","C","E","F","W","B9", "I", "Q"]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
# Same as Black.
line-length = 88
[tool.ruff.mccabe]
max-complexity = 10