Bionic Bunny Application Framework
Copyright (c) 2013 Sladeware LLC
Bionic Bunny Application or BBAPP is a high-level Python framework that encourages developement of BB based applications. The main goal of BBAPP is to generate the Bionic Bunny Operating System or BBOS.
All documentation is in the doc directory.
-
Download the latest version of BBAPP (see http://www.bionicbunny.org):
$ git clone [email protected]:sladeware/bbapp.git
-
To install bbapp, make sure you have Python 2.7 or greater installed. If you're in doubt, run:
$ python -V
-
Run the tests:
$ python setup.py test
If some tests fail, this library may not work correctly on your system. Continue at your own risk.
-
Run this command from the command prompt to install
bbapp
:$ python setup.py install
All the modules will be installed automatically if required. The installation process will generate default config file
~/.bbconfig
. In case you would like to refresh it and does not want to reinstall the package, run:$ python -m bb.config
NOTE: Developers may use "development mode" to skip direct installation process:
$ python setup.py develop
. Once the work has been done you can remove the project source from a staging area using$ python setup.py develop --uninstall
.