Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xi/laneya
multiplayer roguelike game
https://github.com/xi/laneya
Last synced: about 1 month ago
JSON representation
multiplayer roguelike game
- Host: GitHub
- URL: https://github.com/xi/laneya
- Owner: xi
- Created: 2014-10-03T19:21:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-08-03T15:19:42.000Z (over 6 years ago)
- Last Synced: 2023-04-03T10:34:16.143Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 77.1 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Nothing to see yet.
Just a free time game project.
Setup development environment
-----------------------------Execute the following commands::
python -m venv .env
. .env/bin/activate
python setup.py developThis will setup a development environment and install laneya including all
dependencies into it. You can activate the virtual environment anytime by
calling::. .env/bin/activate
laneya consists of two programs: A server called ``laneyad`` and a client
called ``laneya``.Run Tests
---------You can automatically run all tests via tox::
pip install tox
toxThis will setup virtual environments for multiple versions of python and run
all tests with each of these versions.Alternatively you can run the tests manually::
pip install flake8 nose coverage
flake8
nosetests
xdg-open cover/index.html