-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (32 loc) · 1020 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
[project]
name = "investor-agent"
version = "0.1.3"
description = "A Model Context Protocol server for an investor agent"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.2.1",
"pyrate-limiter>=2.10.0",
"requests-cache>=1.2.1",
"requests-ratelimiter>=0.7.0",
"tabulate>=0.9.0",
"yfinance[nospam]>=0.2.54",
]
authors = [
]
keywords = ["investment", "finance", "trading", "agent", "mcp", "model context protocol", "broker", "robinhood", "wallstreetbets"]
classifiers = [
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: End Users/Desktop",
"Topic :: Office/Business :: Financial",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
[project.scripts]
investor-agent = "src.investor_agent.server:mcp.run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]