-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (70 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (70 loc) · 1.68 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "firstrade-platform"
version = "0.3.0"
description = "Experimental QuantStrategyLab platform layer for Firstrade through an unofficial API wrapper."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"firstrade==0.0.39",
"flask",
"google-auth",
"google-cloud-storage",
"gunicorn",
"pandas_market_calendars",
"pytest",
"pytz",
"requests",
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@0063af3b4a974650ea58a7d3f26dd1b94f65d3e8",
"us-equity-strategies @ git+https://github.com/QuantStrategyLab/UsEquityStrategies.git@46887bc3f5454d5b59623b1f5efb7c65912c6b8b",
]
license = "MIT"
authors = [
{ name = "QuantStrategyLab" }
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"ruff",
"build",
]
[tool.setuptools]
py-modules = [
"decision_mapper",
"main",
"runtime_config_support",
"runtime_execution_policy",
"strategy_loader",
"strategy_registry",
"strategy_runtime",
]
[tool.setuptools.packages.find]
include = [
"application*",
"entrypoints*",
"notifications*",
"scripts*",
]
[tool.pytest.ini_options]
pythonpath = [
".",
"../QuantPlatformKit/src",
"../UsEquityStrategies/src",
]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
ignore = ["E701", "E702", "E741", "F841", "F821", "B008", "F401", "F601", "E402", "E401"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["E402", "F841"]
[tool.coverage.run]
branch = true
source = ["src"]
omit = ["tests/*", "*/external/*"]
[tool.coverage.report]
show_missing = true