-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 899 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
[project]
name = "polars-docs-mcp"
version = "0.1.0"
description = "A FastMCP tool to search and retrieve Polars API documentation."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "ABC", email = "abc@abhishekchoudhary.net" }
]
keywords = ["polars", "mcp", "documentation", "api"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"polars>=1.30.0",
"fastmcp>=2.5.0",
]
[tool.setuptools]
py-modules = ["polarsdocsfinder"]
[project.urls]
Homepage = "https://github.com/HotTechStack/polars-docs-mcp"
Repository = "https://github.com/HotTechStack/polars-docs-mcp.git"
Documentation = "https://github.com/HotTechStack/polars-docs-mcp#readme"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"