Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To install the package and run StepPy:
- Install ``python``, ``virtualenv`` and make sure you have a C compiler, portmidi and python headers: e.g. ``sudo apt-get install -y git python3 python3-virtualenv libpython3-dev libportmidi-dev build-essential`` on Debian/Ubuntu
- Clone this repository and ``cd`` into it
- Create a ``virtualenv``: ``virtualenv --python=python3 .venv; source .venv/bin/activate``
- Run ``pip install -e .`` or ``python setup.py develop``
- Run ``pip install -r requirements.txt`` and ``pip install -e .``
- Connect a supported controller on an USB port
- Run ``python -m steppy.main`` or ``python -m steppy.main load examples/mozart.json``

Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Main dependencies
configobj
git+https://github.com/DiffSK/configobj
mido
gevent==1.1b4
gevent
pyfiglet
redis
flask
flask-sockets
gevent-websocket

# Test dependencies
pytest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name='steppy',
version='0.1.0',
packages=find_packages(),
install_requires=['configobj', 'mido', 'gevent==1.1b4', 'pyfiglet', 'redis', 'flask', 'flask-sockets', 'karellen-geventws', 'six'],
install_requires=['configobj', 'mido', 'gevent', 'pyfiglet', 'redis', 'flask', 'flask-sockets', 'gevent-websocket', 'six'],
extras_require={
'test': ['pytest', 'tox']
},
Expand Down
2 changes: 1 addition & 1 deletion steppy/configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pkg_resources

from configobj import ConfigObj
from validate import Validator
from configobj.validate import Validator


class Configurator(object):
Expand Down
2 changes: 1 addition & 1 deletion steppy/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from flask import Flask, render_template
from flask_sockets import Sockets
from gevent.wsgi import WSGIServer
from gevent.pywsgi import WSGIServer
from geventwebsocket.handler import WebSocketHandler


Expand Down