-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 998 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
42
43
44
45
46
47
[project]
name = "mcp-esa-server"
version = "0.1.0"
description = "MCP server for esa.io API"
authors = [
{name = "Naoki Numaguchi", email = "redheru@gmail.com"},
]
dependencies = [
"requests",
"python-dotenv",
"mcp[cli]>=1.7.1",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"ruff>=0.11.8",
"httpx>=0.28.1", # Keep httpx for potential future testing needs
"pytest-mock>=3.14.0",
]
[tool.ruff]
line-length = 120
target-version = "py313" # プロジェクトで使用するPythonバージョンに合わせてください
[tool.ruff.lint]
select = ["E", "F", "W", "I"] # 基本的なルールセットを選択
[tool.uv]
dev-dependencies = [
"pytest",
"ruff",
"python-dotenv",
"uv>=0.7.3",
"pytest-cov>=6.1.1",
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
markers = [
"integration: mark test as integration test (requires network and .env)",
]