-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 834 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 834 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qtools"
version = "0.3.0"
description = "Personal quant research toolkit: data loaders, backtest engine, factor metrics, CLI"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pandas>=2.0",
"numpy>=1.24",
"scipy>=1.11",
"pyarrow>=14.0",
"matplotlib>=3.7",
"yfinance>=0.2.40",
"ccxt>=4.2",
"requests>=2.28",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov",
"ruff>=0.3",
"ipykernel",
]
[project.scripts]
qtools = "qtools.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/qtools"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B"]
[tool.pytest.ini_options]
testpaths = ["tests"]