forked from zsrl/bt-qmt-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 937 Bytes
/
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
[tool.poetry]
name = "qmtbt"
version = "0.2.4"
description = ""
authors = ["pluto <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
backtrader = "^1.9.78.123"
schedule = "^1.2.0"
xtquant = "^240613.1.1"
matplotlib = "^3.9.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.3.0"
pdoc3 = "^0.10.0"
notebook = "^6.5.4"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
branch = "main"
upload_to_PyPI = true
upload_to_release = true
commit_author = "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test"
]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"