build: add MANIFEST.in for package distribution
chore: ignore .minigit file
This commit is contained in:
parent
afda2cef11
commit
aaae444ee6
2
.gitignore
vendored
2
.gitignore
vendored
@ -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
MANIFEST.in
Normal file
15
MANIFEST.in
Normal 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
|
||||||
@ -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"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user