build: add MANIFEST.in for package distribution and bump version to 1.68.0
Add MANIFEST.in to include README, LICENSE, CHANGELOG, verify_installation.py, pyproject.toml, and all rp Python files in source distributions. Update .gitignore to exclude .minigit files. Bump pyproject.toml version from 1.67.0 to 1.68.0 and record the release in CHANGELOG.md.
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ ab
|
|||||||
*.so
|
*.so
|
||||||
*.png
|
*.png
|
||||||
GEMINI.md
|
GEMINI.md
|
||||||
|
.minigit
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
.Python
|
.Python
|
||||||
|
|||||||
@@ -1,6 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.68.0 - 2025-12-13
|
||||||
|
|
||||||
|
We now include necessary files for package distribution. The `.gitignore` file has been updated to ignore generated files.
|
||||||
|
|
||||||
|
**Changes:** 2 files, 17 lines
|
||||||
|
**Languages:** Other (17 lines)
|
||||||
|
|
||||||
## Version 1.67.0 - 2025-12-13
|
## Version 1.67.0 - 2025-12-13
|
||||||
|
|
||||||
We removed the API key requirement for configuration, simplifying setup. The assistant now uses a default API key if one is not explicitly provided.
|
We removed the API key requirement for configuration, simplifying setup. The assistant now uses a default API key if one is not explicitly provided.
|
||||||
|
|||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
include README.md
|
||||||
|
include LICENSE
|
||||||
|
include CHANGELOG.md
|
||||||
|
include verify_installation.py
|
||||||
|
include pyproject.toml
|
||||||
|
recursive-include rp *.py
|
||||||
|
recursive-include rp py.typed
|
||||||
|
recursive-exclude tests *
|
||||||
|
recursive-exclude ideas *
|
||||||
|
recursive-exclude nldr *
|
||||||
|
recursive-exclude fanclub *
|
||||||
|
global-exclude __pycache__
|
||||||
|
global-exclude *.py[cod]
|
||||||
|
global-exclude *.so
|
||||||
|
global-exclude .DS_Store
|
||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rp"
|
name = "rp"
|
||||||
version = "1.67.0"
|
version = "1.68.0"
|
||||||
description = "R python edition. The ultimate autonomous AI CLI."
|
description = "R python edition. The ultimate autonomous AI CLI."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|||||||
Reference in New Issue
Block a user