-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.88 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
[project]
name = "mtflow"
version = "0.0.1.dev2"
description = "Machine Trading Lifecycle"
license = "Apache-2.0"
authors = [
{ name="Stephen Yau", email="softwareentrepreneer+mtflow@gmail.com" }
]
readme = "README.md"
keywords = []
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11"
dependencies = [
"pfund>=0.0.2",
"litestar[standard]>=2.21.0",
"websockets>=16.0.0",
"psutil>=7.2.2",
"apscheduler>=3.11.2",
"joblib>=1.5.3",
"gitpython>=3.1.46",
]
[project.optional-dependencies]
# telegram = ["python-telegram-bot>=22.3.0"]
[project.scripts]
mtflow = "mtflow.__main__:run_cli"
[project.entry-points."pfund_shell.commands"]
mtflow = "mtflow.cli:mtflow_group"
[project.urls]
homepage = "https://pfund.ai"
repository = "https://github.com/PFund-Software-Ltd/mtflow"
documentation = "https://mtflow-docs.pfund.ai"
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[tool.pyright]
# typeCheckingMode = "basic"
reportAny = false
reportExplicitAny = false
reportIncompatibleMethodOverride = false
reportUnreachable = false
reportRedeclaration = false
reportImportCycles = false
reportPrivateUsage = false
reportUnusedCallResult = false
reportImplicitOverride = false
reportMissingTypeStubs = false
reportUnannotatedClassAttribute = false
reportUnnecessaryIsInstance = false
[tool.uv.build-backend]
module-name = "mtflow"
module-root = ""