Metadata-Version: 1.1
Name: mixbox
Version: 0.0.12
Summary: Utility library for cybox, maec, and stix packages
Home-page: http://github.com/CybOXProject/mixbox
Author: The MITRE Corporation
Author-email: cybox@mitre.org
License: UNKNOWN
Description: mixbox
        ======
        
        A library of common code leveraged by python-cybox, python-maec, and python-stix.
        
        |travis badge| |landscape.io badge| |version badge| |downloads badge|
        
        .. |travis badge| image:: https://api.travis-ci.org/CybOXProject/mixbox.png?branch=master
           :target: https://travis-ci.org/CybOXProject/mixbox
           :alt: Build Status
        .. |landscape.io badge| image:: https://landscape.io/github/CybOXProject/mixbox/master/landscape.png
           :target: https://landscape.io/github/CybOXProject/mixbox/master
           :alt: Code Health
        .. |version badge| image:: https://img.shields.io/pypi/v/mixbox.png?maxAge=2592000
           :target: https://pypi.python.org/pypi/mixbox/
        .. |downloads badge| image:: https://img.shields.io/pypi/dm/mixbox.png?maxAge=2592000
           :target: https://pypi.python.org/pypi/mixbox/
        
        
        Developing
        ----------
        
        To set up an environment to develop `mixbox`:
        
        .. code:: bash
        
           # Create a new virtualenv
           $ mkvirtualenv mixbox
        
           # Change to this directory and install requirements
           $ cd /path/to/mixbox
           $ pip install -r requirements.txt
        
           # Install python-cybox, python-maec, and python-stix in "develop" mode.
           $ pip install -e /path/to/python-cybox
           $ pip install -e /path/to/python-maec
           $ pip install -e /path/to/python-stix
        
        
        Then you can make changes to the `mixbox` library and ensure the test cases for
        the corresponding projects continue to pass (using `tox` or `nosetests`).
        
        Releasing
        ---------
        
        .. code:: bash
        
            $ bumpversion patch
            $ rm dist/*
            $ python setup.py sdist --formats=gztar,zip
            $ twine upload dist/*
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
