-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
72 lines (62 loc) · 1.43 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
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["assemblymcp"]
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "assemblymcp"
version = "0.6.5"
description = "MCP server for Korean National Assembly Open API"
license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"assembly-api-client>=1.2.6",
"beautifulsoup4>=4.14.2",
"fastmcp>=2.13.1",
"httpx>=0.28.1",
"lxml>=6.0.2",
"openpyxl>=3.1.5",
"pandas>=2.3.3",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"tenacity>=9.1.2",
"typer>=0.20.0",
"uvicorn>=0.32.1",
]
[project.scripts]
assemblymcp = "assemblymcp.server:main"
[dependency-groups]
dev = [
"pre-commit>=4.4.0",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.5",
]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]