-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (74 loc) · 1.81 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
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deltafq"
description = "A-share low-frequency quantitative trading framework covering research, backtesting, and execution"
authors = [
{name = "DeltaF", email = "leek_li@outlook.com"}
]
readme = "README_EN.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"matplotlib>=3.4.0",
"yfinance>=0.1.70",
"requests>=2.25.0",
"akshare>=1.13.0",
"plotly>=5.0.0",
]
# Auto-read version from the VERSION file at build time
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[project.optional-dependencies]
viz = [
"plotly>=5.0.0",
]
talib = [
"TA-Lib>=0.4.24",
]
dev = [
"black>=21.0.0",
"flake8>=3.9.0",
"sphinx>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/Delta-F/deltafq"
Repository = "https://github.com/Delta-F/deltafq"
Issues = "https://github.com/Delta-F/deltafq/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["deltafq*"]
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''