This is intended to be a space game where yoy control your own species, interact with other races and struggle through social and economic troubles Work in progress as you can see...
Create venv
virtualenv --python python <venvname>
Activate venv by sourcing activation
source <venvname>/Scripts/activate
Install requirements by calling
pip install -r requirements.txt
From within your activated venv.
Run Doxygen using
Doxygen
in root folder. Documentation should be created in /doc/
or
Run Sphinx audotoc from docs folder using
sphinx-apidoc -o ./source ../src
To create html documentation run
make clean
followed by make html
in the same folder.
Run
pylint --rcfile .pylintrc src/
in root fodler. Results should be shown in console.
Run
pytest
in root folder.