A Tournament management framework
To install this project on localhost, you’ll need to follow these steps:
1 - Change directory into your newly created project.
$ cd expanse
2 - Create a Python virtual environment.
$ virtualenv expanse # Python2.7
3 - Activate your env
$ source $PATH_TO_YOUR_ENV$/bin/activate
4 - Install requirements:
(env)$ pip install -r requirements.txt
5 - Upgrade packaging tools.
(env)$ pip install --upgrade pip setuptools
6 - Install the project in editable mode with its testing requirements.
(env)$ pip install -e ".[testing]"
7 - Run your project.
(env)$ pserve development.ini --reload
or, if you’re lazy, just run this script (on project folder, of course):
$ ./install_project.sh