A virtual friend for you to take care of and have fun with!
Go to file
Nicholas Dyer 3fde1996ca added quit to dev menu 2023-05-15 01:20:37 -04:00
pocket_friends added quit to dev menu 2023-05-15 01:20:37 -04:00
.gitignore added compiling script, added pyinstaller to requirements.txt 2021-05-30 00:15:59 -04:00
LICENSE updated LICENSE to GNU General Public License v3.0 2021-05-29 15:47:26 -04:00
MANIFEST.in added setup.py and MANIFEST.in 2021-05-29 22:18:11 -04:00
README.md fixed promo image not showing after restructure 2023-05-14 17:28:10 -04:00
compile.py created surface.py and GameSurface class 2023-05-13 13:07:33 -04:00
requirements.txt changed python version to 3.7, changed pygame to 1.9.6 2023-05-12 22:57:56 -04:00
setup.py changed python version to 3.7, changed pygame to 1.9.6 2023-05-12 22:57:56 -04:00

README.md

Pocket Friends

License: GNU GPL v3.0

Pocket Friends is a game where you raise your own little pocket friend! These pocket friends, called bloops, are great little companions to have! You can feed them, play with them, and watch them grow up!

You can download the latest release of Pocket Friends on the releases page. There are currently no releases of the game. To install the current version on GitHub, follow the instructions below.


Installing From Source

Requirements:

  • Python 3.7
  • Pip
  • Git

All you need to do to install Pocket Friends is install it with pip and you're good to go!

pip install git+https://gitea.citruxx.com/ndyer/pocket-friends.git

Now that the game is installed, just run it like you would any other Python program.

python -m pocket_friends

...and that's it! You now have the latest dev build of Pocket Friends installed on your system!

Building for Windows

If you wish to build this version of Pocket Friends for Windows, you will need the same requirements as to install it to your system from source. After you have done that, issue the following:

git clone https://gitea.citruxx.com/ndyer/pocket-friends.git
cd pocket-friends
pip install -r requirements.txt
pip install pyinstaller
python compile.py

The compiled executable will then be in the pocket-friends\dist directory.