-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "atlassian-browser-mcp"
version = "1.3.1"
description = "Browser-backed MCP server wrapping upstream mcp-atlassian with Playwright SSO auth"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0-only"
authors = [{ name = "GeiserX" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp-atlassian>=0.23.1,<1.0.0",
"playwright>=1.58.0",
"requests>=2.33.1",
"cryptography>=42.0.0",
]
[project.urls]
Homepage = "https://github.com/GeiserX/atlassian-browser-mcp"
Repository = "https://github.com/GeiserX/atlassian-browser-mcp"
Issues = "https://github.com/GeiserX/atlassian-browser-mcp/issues"
[project.scripts]
atlassian-browser-mcp = "atlassian_browser_mcp_full:main"
[tool.setuptools]
py-modules = [
"atlassian_browser_auth",
"atlassian_browser_mcp_full",
"cookie_harvest",
"cookie_autoauth",
]