build: add MANIFEST.in for package distribution

chore: ignore .minigit file
This commit is contained in:
retoor 2025-12-13 06:04:38 +01:00
parent afda2cef11
commit aaae444ee6
4 changed files with 25 additions and 2 deletions

2
.gitignore vendored
View File

@ -9,7 +9,7 @@ ab
*.so
*.png
GEMINI.md
.minigit
# Distribution / packaging
.Python

View File

@ -1,6 +1,14 @@
# 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
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
MANIFEST.in Normal file
View File

@ -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

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "rp"
version = "1.67.0"
version = "1.68.0"
description = "R python edition. The ultimate autonomous AI CLI."
readme = "README.md"
requires-python = ">=3.10"