Skip to content

Commit 8511e7f

Browse files
committed
build: prepare 0.1.1 PyPI metadata refresh
1 parent 2d800f1 commit 8511e7f

3 files changed

Lines changed: 25 additions & 6 deletions

File tree

docs/releases/v0.1.1.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# code2skill v0.1.1
2+
3+
## Summary
4+
5+
This release updates the public package presentation for PyPI and keeps the GitHub repository aligned with it.
6+
7+
## Highlights
8+
9+
- Upgraded the package version from `0.1.0` to `0.1.1`
10+
- Refined the PyPI short description to better explain the product in one line
11+
- Simplified package keywords so the left-side PyPI metadata is cleaner
12+
- Trimmed and clarified topic classifiers
13+
- Added a changelog project URL for the PyPI sidebar
14+
- Kept the long package description sourced from the improved English `README.md`
15+
16+
## Result
17+
18+
The next PyPI release will present a cleaner English package page while preserving the current functionality and release scope.

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "code2skill"
7-
version = "0.1.0"
8-
description = "Generate AI-ready skills, repository blueprints, and rule files from real Python repositories."
7+
version = "0.1.1"
8+
description = "Generate repository-aware Skills, blueprints, and AI rule files from real Python codebases."
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
license = "Apache-2.0"
@@ -16,7 +16,7 @@ authors = [
1616
dependencies = [
1717
"tomli>=2.0.1; python_version < '3.11'",
1818
]
19-
keywords = ["ai", "python", "repository-analysis", "skills", "agents", "codex", "cursor", "claude-code", "copilot", "windsurf"]
19+
keywords = ["python", "ai", "skills", "repository-analysis", "ai-agents", "developer-tools"]
2020
classifiers = [
2121
"Development Status :: 3 - Alpha",
2222
"Environment :: Console",
@@ -27,16 +27,17 @@ classifiers = [
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
30-
"Topic :: Software Development :: Build Tools",
31-
"Topic :: Utilities",
3230
"Topic :: Software Development :: Libraries :: Python Modules",
31+
"Topic :: Software Development :: Documentation",
32+
"Topic :: Utilities",
3333
]
3434

3535
[project.urls]
3636
Homepage = "https://github.com/oceanusXXD/code2skill"
3737
Repository = "https://github.com/oceanusXXD/code2skill"
3838
Documentation = "https://github.com/oceanusXXD/code2skill#readme"
3939
Issues = "https://github.com/oceanusXXD/code2skill/issues"
40+
Changelog = "https://github.com/oceanusXXD/code2skill/blob/main/docs/releases/v0.1.1.md"
4041

4142
[project.optional-dependencies]
4243
dev = [

src/code2skill/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import TYPE_CHECKING, Any
66

7-
__version__ = "0.1.0"
7+
__version__ = "0.1.1"
88

99
__all__ = [
1010
"ScanExecution",

0 commit comments

Comments
 (0)