-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 946 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
[tool.poetry]
name = "scraperapi-mcp-server"
version = "1.0.0"
description = "ScraperAPI MCP server"
readme = "README.md"
authors = ["ScraperAPI"]
keywords = ["http", "mcp", "llm", "automation", "scraping"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.11",
]
packages = [{include = "scraperapi_mcp_server", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.11"
mcp = {extras = ["cli"], version = "^1.26.0"}
pydantic = "^2.12.5"
pydantic-settings = "^2.13.1"
httpx = "^0.28.1"
python-dotenv = "^1.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-mock = "^3.15.1"
pytest-asyncio = "^1.3.0"
[tool.poetry.scripts]
scraperapi-mcp-server = "scraperapi_mcp_server:main"
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"