forked from saiteja-madha/perplexity-web-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 735 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 735 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
[project]
name = "perplexity-web-wrapper"
version = "0.2.0"
description = "Unofficial Perplexity AI client — CLI, MCP server, and Python library. Search, deep research, Spaces, Discover, and more."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"curl-cffi>=0.11.3",
"fastapi>=0.115.12",
"mcp>=1.26.0",
"playwright>=1.58.0",
"playwright-stealth>=2.0.2",
"uvicorn>=0.34.3",
"websocket-client>=1.8.0",
]
[project.scripts]
perplexity = "cli:main"
perplexity-mcp = "mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["lib", "api"]
force-include = {"cli.py" = "cli.py", "mcp_server.py" = "mcp_server.py"}