Skip to content

Mod of Pydew Valley for an experimental study in Psychology

License

Notifications You must be signed in to change notification settings

alibizho/pydew-valley-uzh

 
 

Repository files navigation

PyDew Valley

PyDew Valley is a project originally created by ClearCode in Python using pygame-ce.

This expanded version will be used by the University of Zurich's Department of Psychology in an experimental study in psychology. For more details on the game levels, please click here. This project is due for completion on September 1st, 2024.

For more information, please contact s.kittelberger[at]psychologie.uzh.ch.

Setup Instructions

This project requires Python 3.12 or above.

  1. Clone this repository:

    git clone https://github.com/sloukit/pydew-valley-uzh.git
    
  2. Create and activate a virtual environment:

    Linux/MacOS

    python3 -m venv venv
    source venv/bin/activate
    

    For Windows

    python -m venv venv
    venv\Scripts\activate
    
  3. Install dependencies

    pip install -r requirements.txt # For running the game (runtime dependencies)
    pip install -r requirements-dev.txt # For local development
    pip install -r requirements-test.txt # For running tests
    
  4. Run this project

    python main.py
    

Local Development

See CONTRIBUTING.md for more information on how contributions can be made.

Linting and Formatting

We use Ruff for linting and formatting. Run pip install -r requirements-dev.txt to install it and other relevant dependencies.

Important

Before opening a PR, please run the following command to ensure that your code is formatted and doesn't upset the Ruff linter:

python formatlint.py

Or alternatively, run the following commands individually:

ruff format . && ruff check --include I --fix . #  format code and sort imports
ruff check . # Run linting and perform fixes accordingly, or use '# noqa: <RULE>' followed by a comment justifying why the rule is ignored

Contributing

Please check CONTRIBUTING.md for more information.

Team

This section is continuously updated.

Relevant Links

About

Mod of Pydew Valley for an experimental study in Psychology

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%