File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change @@ -4,19 +4,45 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " markdown-editor-mcp-server"
7- version = " 0.1.2 "
7+ version = " 0.1.3 "
88description = " MCP server for structured text editing in Markdown files"
99readme = " README.md"
1010requires-python = " >=3.10"
1111authors = [
1212 { name = " Artem K" }
1313]
1414license = { 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+ ]
1536dependencies = [
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 ]
2147markdown-editor-mcp-server = " markdown_editor.server:run"
2248
You can’t perform that action at this time.
0 commit comments