Metadata-Version: 1.1
Name: xox
Version: 0.1
Summary: Lightweight virtualenv orchestration
Home-page: https://github.com/barneygale/xox
Author: Barney Gale
Author-email: barney.gale@gmail.com
License: UNKNOWN
Description: xox: lightweight virtualenv orchestration
        =========================================
        
        This project helps provision virtualenvs and dependencies for your Python code.
        It works like tox_ or nox_, but your requirements are declared in your script.
        
        Credit to the nox_ project for much of the implementation.
        
        
        Installation
        ------------
        
        Use pip::
        
            pip install --user xox
        
        
        Usage
        -----
        
        Before you import any other third-party modules, include code like::
        
            import xox
        
            xox.activate("lxml", "requests >= 1.0")
        
        This will create a temporary virtualenv, install packages, and call
        ``os.exec()`` to replace the current process. Each virtualenv is stored in
        a subdirectory of system's temporary directory named ``'xox-virtualenvs'`` and
        re-used when requirements are met. No cleanup mechanism is provided - sorry!
        
        .. _tox: https://tox.readthedocs.io
        .. _nox: https://nox.thea.codes
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
