Utility library for cybox, maec, and stix packages


License
BSD-3-Clause
Install
pip install mixbox==1.0.5

Documentation

mixbox

A library of common code leveraged by python-cybox, python-maec, and python-stix.

Build Status Code Health Version

Developing

To set up an environment to develop mixbox:

# 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

$ bumpversion patch
$ git push origin master --tags
$ rm dist/*
$ python setup.py sdist bdist_wheel
$ twine upload dist/*