-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
71 lines (65 loc) · 1.78 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "perplexity-advanced-mcp"
version = "0.1.3"
description = """
Advanced MCP tool for Perplexity and OpenRouter API integration.
Supports both simple and complex queries with file attachments.
Built with AI-first development approach using Cline, Cursor, and Wispr Flow.
"""
authors = [{ name = "YeonGyu Kim", email = "public.kim.yeon.gyu@gmail.com" }]
dependencies = [
"httpx>=0.28.1",
"mcp>=1.3.0",
"pydantic>=2.10.6",
"setuptools>=75.8.0",
"typer>=0.15.1",
"tenacity>=8.2.3",
]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
keywords = [
"mcp",
"perplexity",
"openrouter",
"ai",
"llm",
"search",
"claude",
"cursor",
"cline",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/code-yeongyu/perplexity-advanced-mcp"
Repository = "https://github.com/code-yeongyu/perplexity-advanced-mcp.git"
"Bug Tracker" = "https://github.com/code-yeongyu/perplexity-advanced-mcp/issues"
[project.scripts]
perplexity-advanced-mcp = "perplexity_advanced_mcp.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = ["mypy>=1.15.0", "ruff>=0.9.6"]
[tool.ruff]
line-length = 119
target-version = "py312"
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"PT", # pytest
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
docstring-quotes = "double"
multiline-quotes = "double"