scenes creates YASARA scenes using WHAT IF list databank files. It uses the python api distributed with YASARA.
To be decided.
Download the source code and run the python installer:
wget https://github.com/cmbi/scenes/releases/scenes-<version>.tar.gz
tar -zxvf scenes-<version>.tar.gz
cd scenes-<version>
python setup.py install
Specify the path to your local YASARA installation in a json
settings file (an example scenes_settings.json
is provided).
Set the envvar SCENES_SETTINGS
to the path to the json settings file.
Run: scenes
If you'd like to contribute by adding features or fixing bugs, follow the steps in this section to setup a development environment.
The following pre-requisites are required by bdb and must be installed manually:
mkvirtualenv --no-site-packages scenes
to create a virtual
environment, and switch to that environment with workon scenes
.git clone https://github.com/cmbi/scenes.git
to obtain the latest
source code.git checkout develop
to switch to the development branch. It's also
recommended that you create a feature branch off develop.pip install -r requirements
to install the module dependencies.
This command installs the required module dependencies into the virtual
environment you've created, isolating the development environment from the
rest of your system.A script run.sh
is provided for development runs. The script sets
SCENES_SETTINGS
to the development settings scenes_settings.json
.
A script test.sh
is provided for development tests. The sripts sets
SCENES_SETTINGS
to the development settings scenes_settings.json
.