depot package manager helps you manage pacakges
Project description
# depot-pm
a pacakge manager helps you to install packages from multiple package managers quickly
## Installation
```shell
pip install -U depot-pm
```
## Usage
* check version
```shell
depot-pm version
```
* install packages
```bash
depot-pm install [package-file]
```
By default, depot-pm will find ```depot.yaml``` or ```depot.json``` from current working directory.
if depot-pm could not find these config files at currnet working directory, it will find in upper directory
until it reaches ```/```.
## Congif file (depoy.yaml)
Check the sample file in source root (depot.yaml)
### Packages
It should contains at least one section: ```pacakges```. The packages section is a dictionary which
uses **installer name** as its key and **packages ot be installed** as value. (a list). So if you want to
use ```pip``` to install ```django 1.7``` and ```boto```, you should type:
```yaml
packages:
pip:
- django==1.7
- boto
```
So the sample file (depoy.yaml) will produce following commands on OS X (which uses ```brew``` but not ```yum```):
```shell
which python3 1>/dev/null 2>&1 || brew install python3
brew install youtube-dl
pip install taskr boto
gem install cocoapods
```
Note that it will check whether python3 exists or not before installing python 3.
and following on CentOS (uses ```yum```):
```shell
sudo yum install -y wget
pip install taskr boto
gem install cocoapods
```
The format of package name could be any acceptable form of each installers.
### Installers
The ```installers``` section defines an installer. Installer configurations has following keys:
Key | Description | Default Value
----|-------------|---------------
sudo | boolean flag indicating wheather this installer should run with sudo command | False
os | boolean flag indicating this installer is an OS specific installer which be run before other installers. (non OS specific ones) | False
multiple | the installer could install multiple packages at ones | True
syntax | the template to generate command. Use [python's string format syntax](https://docs.python.org/3/library/string.html#formatspec) | {} install {}
command | the command name of this installer | {INSTALLER_NAME}
Currenty we have:
Installers | Config
-----------|--------
pip | {DEFAULT}
gem | {DEFAULT}
brew | {DEFAULE} but ```os``` is changed to ```true```
yum | {DEFAULE} but ```os``` and ```sudo``` are changed to ```true```. ```syntax``` is ```{} install -y {}```
## Contact
Use the issue tracker to contact me :smile:
## TODO
* support npm
* check package.json, requirements.txt, and other package file support.
a pacakge manager helps you to install packages from multiple package managers quickly
## Installation
```shell
pip install -U depot-pm
```
## Usage
* check version
```shell
depot-pm version
```
* install packages
```bash
depot-pm install [package-file]
```
By default, depot-pm will find ```depot.yaml``` or ```depot.json``` from current working directory.
if depot-pm could not find these config files at currnet working directory, it will find in upper directory
until it reaches ```/```.
## Congif file (depoy.yaml)
Check the sample file in source root (depot.yaml)
### Packages
It should contains at least one section: ```pacakges```. The packages section is a dictionary which
uses **installer name** as its key and **packages ot be installed** as value. (a list). So if you want to
use ```pip``` to install ```django 1.7``` and ```boto```, you should type:
```yaml
packages:
pip:
- django==1.7
- boto
```
So the sample file (depoy.yaml) will produce following commands on OS X (which uses ```brew``` but not ```yum```):
```shell
which python3 1>/dev/null 2>&1 || brew install python3
brew install youtube-dl
pip install taskr boto
gem install cocoapods
```
Note that it will check whether python3 exists or not before installing python 3.
and following on CentOS (uses ```yum```):
```shell
sudo yum install -y wget
pip install taskr boto
gem install cocoapods
```
The format of package name could be any acceptable form of each installers.
### Installers
The ```installers``` section defines an installer. Installer configurations has following keys:
Key | Description | Default Value
----|-------------|---------------
sudo | boolean flag indicating wheather this installer should run with sudo command | False
os | boolean flag indicating this installer is an OS specific installer which be run before other installers. (non OS specific ones) | False
multiple | the installer could install multiple packages at ones | True
syntax | the template to generate command. Use [python's string format syntax](https://docs.python.org/3/library/string.html#formatspec) | {} install {}
command | the command name of this installer | {INSTALLER_NAME}
Currenty we have:
Installers | Config
-----------|--------
pip | {DEFAULT}
gem | {DEFAULT}
brew | {DEFAULE} but ```os``` is changed to ```true```
yum | {DEFAULE} but ```os``` and ```sudo``` are changed to ```true```. ```syntax``` is ```{} install -y {}```
## Contact
Use the issue tracker to contact me :smile:
## TODO
* support npm
* check package.json, requirements.txt, and other package file support.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
depot-pm-0.1.2.tar.gz
(9.2 kB
view details)
File details
Details for the file depot-pm-0.1.2.tar.gz
.
File metadata
- Download URL: depot-pm-0.1.2.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 490ddbf1da4e8bbefa43d2625cc23b9d04d1b7d5014a19f274127425c58aade7 |
|
MD5 | 07b30c5b25684b69aaa4593db83c9620 |
|
BLAKE2b-256 | e4b9ccfa413ed94b5cb3fce399fa9f5c27179eab040a9650165cf170df2c1790 |