34 lines
505 B
TOML
34 lines
505 B
TOML
|
|
[project]
|
||
|
|
name = "pmocrazykoder"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "A crazy MCP server"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
dependencies = [
|
||
|
|
"crazy-mcp>=0.1.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"ruff",
|
||
|
|
"black",
|
||
|
|
"mypy",
|
||
|
|
"isort",
|
||
|
|
]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
target-version = "py310"
|
||
|
|
|
||
|
|
[tool.ruff.lint]
|
||
|
|
select = ["E", "F", "I", "N", "W"]
|
||
|
|
ignore = []
|
||
|
|
|
||
|
|
[tool.black]
|
||
|
|
target-version = ["py310"]
|
||
|
|
|
||
|
|
[tool.mypy]
|
||
|
|
python_version = "3.10"
|