From aaae444ee681a36f6abadcd39536d4507e414201 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 13 Dec 2025 06:04:38 +0100 Subject: [PATCH] build: add MANIFEST.in for package distribution chore: ignore .minigit file --- .gitignore | 2 +- CHANGELOG.md | 8 ++++++++ MANIFEST.in | 15 +++++++++++++++ pyproject.toml | 2 +- 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/.gitignore b/.gitignore index 295a4ed..9cd7f81 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ ab *.so *.png GEMINI.md - +.minigit # Distribution / packaging .Python diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a4729..c8f566f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..d8cd1ce --- /dev/null +++ b/MANIFEST.in @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 4f3fc33..3569444 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"