-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "GeneralBacktest"
version = "1.3.0"
license = {text = "MIT"}
description = "一个灵活高效的量化策略回测框架,支持多资产组合、任意调仓频率、向量化计算和丰富的性能分析"
readme = "README.md"
authors = [
{name = "Elen Young", email = "yang13515360252@163.com"}
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering",
]
keywords = ["backtest", "quantitative", "trading", "finance", "portfolio"]
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"matplotlib>=3.3.0",
]
[project.optional-dependencies]
database = [
"quantchdb>=0.1.0",
]
excel = [
"openpyxl>=3.0.0",
]
full = [
"quantchdb>=0.1.0",
"openpyxl>=3.0.0",
]
[project.urls]
"Homepage" = "https://github.com/ElenYoung/GeneralBacktest"
"Bug Reports" = "https://github.com/ElenYoung/GeneralBacktest/issues"
"Source" = "https://github.com/ElenYoung/GeneralBacktest"
"Documentation" = "https://github.com/ElenYoung/GeneralBacktest#readme"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["GeneralBacktest*"]
exclude = ["tests*", "examples*", "output_demo*"]