-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 1004 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 1004 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
33
34
35
[project]
name = "robotframework-mcp"
version = "1.0.0"
description = "Robot Framework MCP Server for code generation"
authors = [
{name = "Meenu rani", email = "meenu.rani@sourcefuse.com"}
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["mcp", "selenium", "testing", "robot-framework", "automation"]
dependencies = [
"mcp>=1.0.0",
"robotframework>=6.0",
"selenium>=4.0.0",
"robotframework-seleniumlibrary>=6.0",
]
[project.scripts]
robotframework-mcp = "run_mcp:main"
[project.urls]
Homepage = "https://github.com/sourcefuse/robotframework-MCP"
Repository = "https://github.com/sourcefuse/robotframework-MCP.git"
Issues = "https://github.com/sourcefuse/robotframework-MCP/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["mcp_server", "run_mcp"]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.md", "*.txt", "*.json", "*.js", "*.bat", "bin/*", "scripts/*"]