Metadata-Version: 1.1
Name: bsm
Version: 1.0.0a1
Summary: Bundled software manager
Home-page: https://github.com/bsmhep/bsm
Author: Xianghu Zhao
Author-email: xianghuzhao@gmail.com
License: MIT
Description: BSM
        ===
        
        Bundled software manager
        
        
        Installation
        ------------
        
        Install ``BSM`` with ``curl`` or ``wget`` ::
        
            curl -sSL https://raw.githubusercontent.com/bsmhep/bsm/master/script/install.sh | sh -s [BSM_DIR]
        
        or ::
        
            wget -qO- https://raw.githubusercontent.com/bsmhep/bsm/master/script/install.sh | sh -s [BSM_DIR]
        
        If ``BSM_DIR`` is omitted, ``BSM`` will be installed in the
        current directory.
        
        
        Install Software with BSM
        -------------------------
        
        Setup ``BSM``::
        
            . <BSM_DIR>/setup.sh
        
        List available software version::
        
            bsm ls-remote
        
        Specify software version and where to install::
        
            bsm [-r <SOFTWARE_ROOT>] install <version>
        
        If ``-r <SOFTWARE_ROOT>`` is not specified, everything will be
        installed in the current directory.
        
        Multiple versions could be installed under the same software root
        directory.
        
        
        Configuration
        -------------
        
        Create the configuration file if it does not exist::
        
            [ -e ~/.bsm.conf ] || bsm config -e > ~/.bsm.conf
        
        Edit `~/.bsm.conf` and uncomment `software_root`::
        
            software_root: <SOFTWARE_ROOT>
        
        
        Select Software Version
        -----------------------
        
        List local installed software version::
        
            bsm -r <SOFTWARE_ROOT> ls
        
        Select local software version you would like to use::
        
            bsm -r <SOFTWARE_ROOT> use <version>
        
Keywords: bsm
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: System :: Software Distribution
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
