forked from stickerdaniel/linkedin-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 942 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "linkedin-mcp-server"
version = "1.6.0"
description = "Optimized LinkedIn MCP Server"
requires-python = ">=3.12"
dependencies = [
"fastmcp>=2.10.1",
"inquirer>=3.4.0",
"keyring>=25.6.0",
"pydantic>=2.11.7",
"python-dotenv>=1.1.1",
"rapidfuzz>=3.13.0",
"pyperclip>=1.9.0",
"patchright>=1.55.0",
"fake-useragent>=1.4.0",
"keyrings-alt>=5.0.2",
"anyio==4.9.0",
]
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["linkedin_mcp_server*"]
exclude = ["PRPs*", "assets*", "testdata*", "docs*", "tests*"]
[dependency-groups]
dev = [
"aiohttp>=3.12.13",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.1.1",
"ruff>=0.11.11",
"ty>=0.0.1a12",
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "auto"