-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
75 lines (66 loc) · 1.82 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quanteval"
version = "1.1.0"
description = "Quantitative strategy and factor evaluation toolkit for Chinese A-share and Hong Kong (HKEX) markets"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Karhou Tam" }
]
keywords = ["quant", "finance", "backtesting", "trading", "a-share", "akshare", "hkex", "hong-kong"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"akshare>=1.18.19",
"matplotlib>=3.10.0",
"numpy>=2.3.0",
"pandas>=3.0.0",
"plotly>=5.0.0",
"pyarrow>=23.0.0",
"scipy>=1.11.0",
"yfinance>=0.2.0",
]
[project.optional-dependencies]
dev = [
"build>=1.4.0",
"ipykernel>=6.29.0",
"jupyter>=1.1.0",
"nbval>=0.11.0",
"pytest>=9.0.0",
"ruff>=0.15.0",
"twine>=6.2.0",
]
[project.urls]
Homepage = "https://github.com/KarhouTam/quanteval"
Documentation = "https://github.com/KarhouTam/quanteval#readme"
Issues = "https://github.com/KarhouTam/quanteval/issues"
Source = "https://github.com/KarhouTam/quanteval"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-ra"
[tool.ruff]
line-length = 100
target-version = "py311"
extend-exclude = ["src/quanteval.egg-info", "examples/*.ipynb", "script.ipynb"]
[tool.ruff.lint]
select = ["E9", "F"]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"