-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (88 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (88 loc) · 2.46 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "okta-mcp-server"
version = "1.1.5"
description = "The Okta Open Source MCP Server integrates with LLMs and AI agents, allowing you to perform various Okta management operations using natural language and is Generally Available (GA)."
readme = "README.md"
requires-python = ">=3.13"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE.md"]
authors = [
{ name = "Okta, Inc." },
]
maintainers = [
{ name = "Developer Community Products", email = "developer-community-products@okta.com" },
]
keywords = ["okta", "mcp", "model-context-protocol", "llm", "ai-agents", "identity", "iam"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"Typing :: Typed",
]
dependencies = [
"loguru>=0.7.3",
"mcp[cli]>=1.28.1,<2.0.0",
"okta==3.4.4",
"requests>=2.32.4",
"keyring>=25.6.0",
"keyrings.alt>=5.0.0",
"flatdict>=4.1.0",
]
[tool.uv]
constraint-dependencies = [
"urllib3>=2.7.0",
"cryptography>=48.0.1",
"starlette>=1.3.1",
"python-multipart>=0.0.31",
"click>=8.3.3",
"jaraco.context>=6.1.0",
"python-dotenv>=1.2.2",
"idna>=3.15",
]
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/okta_mcp_server"]
[tool.hatch.build.targets.sdist]
include = [
"src/okta_mcp_server",
"README.md",
"LICENSE",
"NOTICE.md",
"CHANGELOG.md",
"SECURITY.md",
"pyproject.toml",
]
exclude = [
"**/__pycache__",
"**/*.pyc",
"tests/**",
".vscode/**",
".idea/**",
"assets/**",
"docs/**",
"Dockerfile",
"docker-compose.yml",
".env*",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.11.13",
]
[project.urls]
Homepage = "https://github.com/okta/okta-mcp-server"
Documentation = "https://github.com/okta/okta-mcp-server#readme"
Repository = "https://github.com/okta/okta-mcp-server"
Issues = "https://github.com/okta/okta-mcp-server/issues"
Changelog = "https://github.com/okta/okta-mcp-server/blob/main/CHANGELOG.md"
[project.scripts]
okta-mcp-server = "okta_mcp_server:main"