M1 Software Engineering Project
Go to file
eichhornchen 657345e6f7 Fix for loading game in progress, there remains to change all entities __init__ to allow being initialized by a dictionnary (work in progress, breaks the game) 2020-11-18 22:42:46 +01:00
dungeonbattle Fix for loading game in progress, there remains to change all entities __init__ to allow being initialized by a dictionnary (work in progress, breaks the game) 2020-11-18 22:42:46 +01:00
resources Added documentation for some classes again 2020-11-18 12:27:59 +01:00
.gitignore Add write and load settings 2020-11-06 14:56:21 +01:00
.gitlab-ci.yml Add Gitlab stage for Python 3.7 because it is Debian default version 2020-11-11 22:50:14 +01:00
README.md Setup python virtual environment 2020-10-09 16:21:10 +02:00
main.py Reworked graphics to make it more modular 2020-11-10 18:08:06 +01:00
requirements.txt 🎉 Init repo 2020-10-02 15:48:39 +02:00
save.json Fix for loading game in progress, there remains to change all entities __init__ to allow being initialized by a dictionnary (work in progress, breaks the game) 2020-11-18 22:42:46 +01:00
tox.ini Add Gitlab stage for Python 3.7 because it is Debian default version 2020-11-11 22:50:14 +01:00

README.md

pipeline status coverage report

Dungeon Battle

M1 Software engineering project

Création d'un environnement de développement

Il est toujours préférable de travailler dans un environnement Python isolé du reste de son instalation.

  1. Installation des dépendances de la distribution. Vous devez déjà installer Python et le module qui permet de créer des environnements virtuels. On donne ci-dessous l'exemple pour une distribution basée sur Debian, mais vous pouvez facilement adapter pour ArchLinux ou autre.

    $ sudo apt update
    $ sudo apt install --no-install-recommends -y python3-setuptools python3-venv python3-dev git
    
  2. Clonage du dépot là où vous voulez :

    $ git clone git@gitlab.crans.org:ynerant/dungeon-battle.git && cd dungeon-battle
    
  3. Création d'un environment de travail Python décorrélé du système. On n'utilise pas --system-site-packages ici pour ne pas avoir des clashs de versions de modules avec le système.

    $ python3 -m venv env
    $ source env/bin/activate  # entrer dans l'environnement
    (env)$ pip3 install -r requirements.txt
    (env)$ deactivate  # sortir de l'environnement