-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.65 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
[project]
name = "flyte-mcp"
version = "0.1.1"
description = "MCP server exposing Flyte V2 SDK knowledge (symbols, patterns, examples) to AI assistants."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Andre Ahlert", email = "andre@aex.partners" }]
keywords = ["flyte", "mcp", "model-context-protocol", "claude", "cursor", "ai", "llm", "workflow", "orchestration"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/andreahlert/flyte-mcp"
Repository = "https://github.com/andreahlert/flyte-mcp"
Issues = "https://github.com/andreahlert/flyte-mcp/issues"
Registry = "https://github.com/andreahlert/flyte-plugin-registry"
[project.optional-dependencies]
build = []
[project.scripts]
flyte-mcp = "flyte_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/flyte_mcp"]
[tool.hatch.build.targets.wheel.force-include]
"src/flyte_mcp/data/flyte-v2-knowledge.json" = "flyte_mcp/data/flyte-v2-knowledge.json"