-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 857 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "yuclaw"
version = "1.3.0"
description = "YUCLAW — Open Financial Intelligence Platform"
readme = "README_PACKAGE.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["finance", "trading", "quant", "zkp", "backtesting", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"yfinance>=0.2.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"requests>=2.28.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"rich>=13.0.0",
]
[project.scripts]
yuclaw = "yuclaw.cli_v2:main"
[project.urls]
Homepage = "https://github.com/YuClawLab"
Dashboard = "https://yuclawlab.github.io/yuclaw-brain"