Skip to content

Commit dd2919f

Browse files
committed
chore: release 0.1.3 - metadata for pypi visibility
1 parent 4063f8f commit dd2919f

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.3] - 2024-12-27
9+
10+
### Added
11+
- Added PyPI metadata (keywords, classifiers, project URLs) for better discoverability.
12+
- Enhanced package description and documentation references.
13+
814
## [0.1.2] - 2024-12-27
915

1016
### Fixed

pyproject.toml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,45 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "markdown-editor-mcp-server"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
description = "MCP server for structured text editing in Markdown files"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
authors = [
1212
{ name = "Artem K" }
1313
]
1414
license = { text = "MIT" }
15+
keywords = [
16+
"mcp",
17+
"model-context-protocol",
18+
"markdown",
19+
"editor",
20+
"agentic-editing",
21+
"llm",
22+
"claude",
23+
"ollama",
24+
]
25+
classifiers = [
26+
"Development Status :: 4 - Beta",
27+
"Intended Audience :: Developers",
28+
"License :: OSI Approved :: MIT License",
29+
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
33+
"Topic :: Text Processing :: Markup :: Markdown",
34+
"Topic :: Software Development :: Libraries :: Python Modules",
35+
]
1536
dependencies = [
1637
"mcp>=0.9.0",
1738
"pyyaml>=6.0.1",
1839
]
1940

41+
[project.urls]
42+
Repository = "https://github.com/KazKozDev/markdown-editor-mcp-server"
43+
Issues = "https://github.com/KazKozDev/markdown-editor-mcp-server/issues"
44+
Changelog = "https://github.com/KazKozDev/markdown-editor-mcp-server/blob/main/CHANGELOG.md"
45+
2046
[project.scripts]
2147
markdown-editor-mcp-server = "markdown_editor.server:run"
2248

0 commit comments

Comments
 (0)