Metadata-Version: 2.1
Name: quoridor
Version: 0.0.1
Summary: Quoridor Online Game
Home-page: https://github.com/Quentin18/Quoridor-Online
Author: Quentin Deschamps
Author-email: quentindeschamps18@gmail.com
License: UNKNOWN
Description: # Quoridor Online
        
        Client and server to play a Quoridor game online with Python.
        This is an Alpha version. Some updates will come.
        
        ## Install
        Requires: Python >=3.6.
        To install, open a command prompt and launch:
        ```bash
        pip3 install quoridor
        ```
        
        ## Use
        To launch a server:
        ```bash
        python3 -m quoridor.server [HOST] [PORT] [NUM_PLAYERS]
        ```
        - HOST: IP address
        - PORT: port number
        - NUM_PLAYERS: number of players (2, 3 or 4)
        
        To launch a client:
        ```bash
        python3 -m quoridor.client [HOST] [PORT]
        ```
        HOST and PORT must be the same as the server.
        
        ## Play
        You can see the rules of the game here : https://en.wikipedia.org/wiki/Quoridor
        - To move your pawn, use the four arrow keys
        - To place a fence, click on the game board
        
        At the end of the game, you can restart a game. Just click on the button "Restart".
        
        ## Contact
        quentindeschamps18@gmail.com
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
