-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.3 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
[project]
name = "mostlyai-mcp-server"
version = "0.1.0"
description = "Mostly AI MCP Server"
authors = [{ name = "MOSTLY AI", email = "dev@mostly.ai" }]
requires-python = ">=3.10,<3.13"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"mostlyai>=4.7.8",
"fastapi>=0.116",
"fastmcp @ git+https://github.com/mostly-ai/fastmcp.git@v-2-13-0-2",
"prometheus-client>=0.22.1",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff==0.11.6", # sync'ed with .pre-commit-config
"pre-commit>=4.0",
"twine>=6.1",
"ipykernel>=6.25",
"respx>=0.20",
"httpx>=0.27",
"pytest-asyncio>=1.0.0",
]
docs = [
"mkdocs>=1.6",
"mkdocstrings[crystal, python]>=0.29",
"mkdocs-material>=9.0",
"mkdocs-llmstxt>=0.2",
"griffe>=1.0",
"pymdown-extensions>=10.0",
"griffe-fieldz>=0.2",
"black>=25.0",
]
[project.scripts]
mostlyai-mcp-server = "mostlyai.mcp.server:main"
[tool.hatch.build.targets.sdist]
include = ["mostlyai/mcp"]
[tool.hatch.build.targets.wheel]
include = ["mostlyai/mcp"]
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = ["E402"]