-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1006 Bytes
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
[project]
name = "kabuai-monorepo"
version = "0.1.0"
description = "Next Gen AI Agent for Stock Market Analysis and Guidance. Smart Investing Conversations Start Here."
readme = "README.md"
authors = [{ name = "Harsh Narayan Jha", email = "harshnj@proton.me" }]
license = "LICENSE"
keywords = ["finance", "stock market", "investment", "AI", "agent", "stock"]
requires-python = ">=3.13"
dependencies = [
"kabuai",
"ui-streamlit",
]
[tool.uv.sources]
kabuai = { workspace = true }
ui-streamlit = { workspace = true }
[tool.basedpyright]
reportUnusedCallResult = "none"
reportUnknownMemberType = "none"
reportUnknownVariableType = "none"
reportUnknownArgumentType = "none"
reportUnknownParameterType = "none"
reportMissingTypeArgument = "none"
reportUnusedImport = "none"
reportExplicitAny = "none"
reportAny = "none"
useLibraryCodeForTypes = true
executionEnvironments = [
{ root = "kabuai" },
{ root = "ui-streamlit"}
]
[tool.uv.workspace]
members = [
"kabuai",
"ui-streamlit",
]