| Name | install-all-setup JSON |
| Version |
0.1.1
JSON |
| download |
| home_page | None |
| Summary | Installe vos requirements utiles et lance votre logique. |
| upload_time | 2025-10-29 21:10:10 |
| maintainer | None |
| docs_url | None |
| author | Vous |
| requires_python | >=3.8 |
| license | MIT License
Copyright (c) 2025
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
| keywords |
bootstrap
pip
requirements
setup
|
| VCS |
|
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# install_all_setup
Installez ce paquet via pip et lancez le script d'entrée.
## Utilisation
Après publication (ou en local avec un build), installez puis lancez:
```powershell
python -m pip install --upgrade pip
pip install install_all_setup
install-all-setup
# ou
python -m meta_bootstrap
# ou en local sans installation:
python .\install_all_setup.py
```
## Où mettre vos installs et votre code
Modifiez `src/meta_bootstrap/main.py`:
- Ajoutez vos paquets dans `packages_to_install`
- Écrivez ensuite votre logique applicative
Extrait:
```startLine:endLine:src/meta_bootstrap/main.py
def main() -> None:
banner = "=" * 60
print(banner)
print("install_all_setup — Installation des requirements")
print(banner)
# Ajoutez ici vos paquets utiles à installer
packages_to_install: List[str] = [
# "requests",
# "rich",
# "numpy",
# "pandas",
]
if packages_to_install:
print(f"→ Installation de {len(packages_to_install)} paquet(s)…")
pip_install(packages_to_install)
print("✓ Installation terminée")
else:
print("(Aucun paquet listé. Ajoutez-en dans packages_to_install.)")
# Placez ici votre logique principale post-installation
print("Prêt. Ajoutez votre code juste après l'installation dans main().")
```
## Déclarer des dépendances (installées automatiquement via pip)
Ajoutez vos dépendances dans `pyproject.toml` sous `project.dependencies` pour qu'elles soient installées lors d'un `pip install`:
```startLine:endLine:pyproject.toml
[project]
# ...
dependencies = [
# "requests>=2.32.0",
# "rich>=13.0.0",
]
```
## Publier sur PyPI
1) Vérifiez le nom dans `pyproject.toml` (`project.name = "install_all_setup"`).
2) Bump la version dans `project.version`.
3) Créez un token API sur PyPI.
4) Publiez:
```powershell
$env:TWINE_USERNAME = "__token__"
$env:TWINE_PASSWORD = "pypi-<votre-token>"
.\publish.ps1
```
Note: Avoir une version récente de pip est recommandé (voir `pip` 25.3 sur PyPI) — `Requires: Python >=3.9` pour pip lui‑même. Référence: [pip sur PyPI](https://pypi.org/project/pip/).
Raw data
{
"_id": null,
"home_page": null,
"name": "install-all-setup",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "bootstrap, pip, requirements, setup",
"author": "Vous",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/53/01/08388a644a914bd14b1d7145e9a24a0955068ee99a0f7415fe074c799953/install_all_setup-0.1.1.tar.gz",
"platform": null,
"description": "# install_all_setup\r\n\r\nInstallez ce paquet via pip et lancez le script d'entr\u00e9e.\r\n\r\n## Utilisation\r\n\r\nApr\u00e8s publication (ou en local avec un build), installez puis lancez:\r\n\r\n```powershell\r\npython -m pip install --upgrade pip\r\npip install install_all_setup\r\ninstall-all-setup\r\n# ou\r\npython -m meta_bootstrap\r\n# ou en local sans installation:\r\npython .\\install_all_setup.py\r\n```\r\n\r\n## O\u00f9 mettre vos installs et votre code\r\n\r\nModifiez `src/meta_bootstrap/main.py`:\r\n- Ajoutez vos paquets dans `packages_to_install`\r\n- \u00c9crivez ensuite votre logique applicative\r\n\r\nExtrait:\r\n```startLine:endLine:src/meta_bootstrap/main.py\r\ndef main() -> None:\r\n banner = \"=\" * 60\r\n print(banner)\r\n print(\"install_all_setup \u2014 Installation des requirements\")\r\n print(banner)\r\n\r\n # Ajoutez ici vos paquets utiles \u00e0 installer\r\n packages_to_install: List[str] = [\r\n # \"requests\",\r\n # \"rich\",\r\n # \"numpy\",\r\n # \"pandas\",\r\n ]\r\n\r\n if packages_to_install:\r\n print(f\"\u2192 Installation de {len(packages_to_install)} paquet(s)\u2026\")\r\n pip_install(packages_to_install)\r\n print(\"\u2713 Installation termin\u00e9e\")\r\n else:\r\n print(\"(Aucun paquet list\u00e9. Ajoutez-en dans packages_to_install.)\")\r\n\r\n # Placez ici votre logique principale post-installation\r\n print(\"Pr\u00eat. Ajoutez votre code juste apr\u00e8s l'installation dans main().\")\r\n```\r\n\r\n## D\u00e9clarer des d\u00e9pendances (install\u00e9es automatiquement via pip)\r\n\r\nAjoutez vos d\u00e9pendances dans `pyproject.toml` sous `project.dependencies` pour qu'elles soient install\u00e9es lors d'un `pip install`:\r\n\r\n```startLine:endLine:pyproject.toml\r\n[project]\r\n# ...\r\ndependencies = [\r\n # \"requests>=2.32.0\",\r\n # \"rich>=13.0.0\",\r\n]\r\n```\r\n\r\n## Publier sur PyPI\r\n\r\n1) V\u00e9rifiez le nom dans `pyproject.toml` (`project.name = \"install_all_setup\"`).\r\n2) Bump la version dans `project.version`.\r\n3) Cr\u00e9ez un token API sur PyPI.\r\n4) Publiez:\r\n\r\n```powershell\r\n$env:TWINE_USERNAME = \"__token__\"\r\n$env:TWINE_PASSWORD = \"pypi-<votre-token>\"\r\n.\\publish.ps1\r\n```\r\n\r\nNote: Avoir une version r\u00e9cente de pip est recommand\u00e9 (voir `pip` 25.3 sur PyPI) \u2014 `Requires: Python >=3.9` pour pip lui\u2011m\u00eame. R\u00e9f\u00e9rence: [pip sur PyPI](https://pypi.org/project/pip/).\r\n",
"bugtrack_url": null,
"license": "MIT License\r\n \r\n Copyright (c) 2025\r\n \r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n \r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n \r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE.\r\n ",
"summary": "Installe vos requirements utiles et lance votre logique.",
"version": "0.1.1",
"project_urls": {
"Homepage": "https://example.com/"
},
"split_keywords": [
"bootstrap",
" pip",
" requirements",
" setup"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "163e9c0f80c46dac1d3e47e827ce9aaa066407092567de96a9dcb531a5e8b031",
"md5": "aec9ef65b54e71774ce1543c285ccc55",
"sha256": "4fa6050bc4469b41297d67f6650550170c63a56ba30264bfe5c06a94e15b8f98"
},
"downloads": -1,
"filename": "install_all_setup-0.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "aec9ef65b54e71774ce1543c285ccc55",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 4879,
"upload_time": "2025-10-29T21:10:09",
"upload_time_iso_8601": "2025-10-29T21:10:09.523624Z",
"url": "https://files.pythonhosted.org/packages/16/3e/9c0f80c46dac1d3e47e827ce9aaa066407092567de96a9dcb531a5e8b031/install_all_setup-0.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "530108388a644a914bd14b1d7145e9a24a0955068ee99a0f7415fe074c799953",
"md5": "5330bdcb7842484c06aa76c52654eaef",
"sha256": "0c0a9fbe8918aaa4df67525a2f42f716862501248866da51b5599783d003b18f"
},
"downloads": -1,
"filename": "install_all_setup-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "5330bdcb7842484c06aa76c52654eaef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 3656,
"upload_time": "2025-10-29T21:10:10",
"upload_time_iso_8601": "2025-10-29T21:10:10.583684Z",
"url": "https://files.pythonhosted.org/packages/53/01/08388a644a914bd14b1d7145e9a24a0955068ee99a0f7415fe074c799953/install_all_setup-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-29 21:10:10",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "install-all-setup"
}