-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 999 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
[project]
name = "tasty-agent"
version = "0.1.5"
description = "A Model Context Protocol server for interacting with TastyTrade brokerage accounts"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"keyring",
"matplotlib",
"mcp[cli]>=1.2.0",
"tastytrade>=9.7",
"exchange-calendars>=4.8",
"tabulate>=0.9.0",
"apscheduler>=3.11.0",
]
authors = [{ name = "Ferdous", email = "[email protected]" }]
keywords = ["tastytrade", "trading", "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]
tasty-agent = "src.tasty_agent.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]