-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
executable file
·37 lines (34 loc) · 958 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
36
37
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp_client_cli"
version = "0.1.0"
description = "Command line interface for MCP client"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"langchain-anthropic>=0.3.0",
"langchain>=0.3.8",
"mcp>=1.0.0",
"python-dotenv>=1.0.1",
"langgraph>=0.2.53",
"langchain-openai>=0.2.10",
"jsonschema-pydantic>=0.6",
"aiosqlite>=0.20.0",
"langgraph-checkpoint-sqlite>=2.0.1",
]
authors = [
{ name = "Adhika Setya Pramudita", email = "adhika.setya.p@gmail.com" }
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/adhikasp/mcp_client_cli"
Issues = "https://github.com/adhikasp/mcp_client_cli/issues"
[project.scripts]
llm = "mcp_client_cli.cli:main"