changed doc references to gitea site

This commit is contained in:
Nicholas Dyer 2023-01-26 15:05:21 -05:00
parent c25b021501
commit 6d28f0827f
No known key found for this signature in database
GPG Key ID: E4E6388793FA2105
2 changed files with 6 additions and 6 deletions

View File

@ -1,11 +1,11 @@
![Pocket Friends](https://github.com/nickedyer/pocket-friends/blob/master/pocket_friends/game_files/resources/images/promotional.png?raw=true)
![Pocket Friends](https://gitea.citruxx.com/ndyer/pocket-friends/raw/branch/master/pocket_friends/game_files/resources/images/promotional.png)
[![License: GNU GPL v3.0](https://img.shields.io/badge/license-GNU%20GPL%20v3.0-blue)](LICENSE)
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.](https://github.com/nickedyer/pocket-friends/releases)~~
~~You can download the latest release of Pocket Friends on the [releases page.](https://gitea.citruxx.com/ndyer/pocket-friends/releases)~~
There are currently no releases of the game. To install the current version on GitHub, follow the instructions below.
---
@ -19,7 +19,7 @@ Requirements:
All you need to do to install Pocket Friends is install it with pip and you're good to go!
`pip install git+https://github.com/nickedyer/pocket-friends.git`
`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.
@ -33,7 +33,7 @@ If you wish to build this version of Pocket Friends for Windows, you will need t
requirements as to install it to your system from source. After you have done that,
issue the following:
```
git clone https://github.com/nickedyer/pocket-friends.git
git clone https://gitea.citruxx.com/ndyer/pocket-friends.git
cd pocket-friends
pip install -r requirements.txt
pip install pyinstaller

View File

@ -15,12 +15,12 @@ setuptools.setup(
license='GNU GPL-3.0',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nickedyer/pocket-friends',
url='https://gitea.citruxx.com/ndyer/pocket-friends',
packages=setuptools.find_packages(),
# https://pypi.org/classifiers/
classifiers=[
],
install_requires=required,
python_requires='>=3.6',
python_requires='>=3.10',
include_package_data=True,
)