Metadata-Version: 1.1
Name: smserver
Version: 1.0.0.beta1
Summary: Stepmania server implementation
Home-page: http://github.com/ningirsu/stepmania-server
Author: Sélim Menouar
Author-email: selim.menouar@rez-gif.supelec.fr
License: MSI
Description: # Stepmania Server
        
        Stepmania server in python3. Feel free to try it and ask for features!
        
        ## Requirement
        
        The StepmaniaServer is written in python3. (>= 3.3)
        
        You need the following dependency :
        
        * pyyaml
        * sqlalchemy (>=1.0)
        * websockets. Only use if you want the server to listen for websockets package. (Currently useless)
        * asyncio (if using python 3.3)
        * A database binding. One supports by sqlalchemy.
        
        ## Setup
        
        ```
        sudo python3 setup.py install
        ```
        
        Launch the stepmania server:
        
        ```
        smserver
        ```
        
        If you want to launch the server as a service, check the init.d/systemd script
        
        ## Configuration
        
        To change the configuration, edit the file:
        ```
        /etc/smserver/conf.yml
        ```
        
        Or pass options to smserver call. Eg :
        ```
        smserver --name MyStepmaniaServer --motd "Welcome on my new server!"
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Games/Entertainment :: Arcade
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
