https://github.com/cadojo/dimples
An experiment in improved Python package distribution and environment resolution.
https://github.com/cadojo/dimples
Last synced: 3 months ago
JSON representation
An experiment in improved Python package distribution and environment resolution.
- Host: GitHub
- URL: https://github.com/cadojo/dimples
- Owner: cadojo
- License: mit
- Created: 2022-12-19T04:27:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-15T02:44:37.000Z (over 1 year ago)
- Last Synced: 2025-01-16T20:23:07.091Z (4 months ago)
- Language: Python
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 😊 `dimples`
_Distribute and manage your Python packages with `dimples`!_## Vision
### Command Line
```bash
python -m pip install --upgrade dimplespython -m dimples generate my-new-package
python -m dimples activate my-new-package
python -m dimples add numpy
python -m dimples statuspython -m dimples activate
```### Python
```python
import dimples as dmpdmp.generate("my-new-package")
dmp.activate("my-new-package")dmp.add("numpy")
dmp.status()dmp.activate()
```
## Notes### The Path of the Crab
- https://doc.rust-lang.org/cargo/reference/registries.html
### Indirect Dependencies With Same Name
- https://pkgdocs.julialang.org/v1/toml-files/#Multiple-package-with-the-same-name