Metadata-Version: 2.1
Name: disgames
Version: 1.3.0
Summary: A games module that can be used to instantly add games to your discord bot
Home-page: https://github.com/andrewthederp/Disgames
Author: andrew
Maintainer: Marcus
License: Apache
Description: # Disgames
        
        A python module made to make creating games easier and adds a bunch of game commands to your discord python bot
        
        ## Contents
        
        - [Disgames](#disgames)
          - [Contents](#contents)
          - [Installation](#installation)
          - [Usage](#usage)
          - [Extra](#extra)
        
        ## Installation
        
        To install it from [pypi](https://pypi.org/project/disgames), run
        
        ```sh
        pip install disgames
        ```
        
        To install the development version, you need [git](https://git-scm.com/downloads) installed. After installing it, run
        
        ```shell
        pip install git+https://github.com/andrewthederp/Disgames
        ```
        
        ## Usage
        
        You can either load it as an extension by doing
        
        ```py
        from discord.ext import commands
        
        bot = commands.Bot("YOUR_PREFIX_HERE")
        
        bot.load_extension("disgames")
        ```
        
        or call the `register_commands` function manually. by doing
        
        ```py
        from disgames import register_commands
        from discord.ext import commands
        
        bot = commands.Bot("YOUR_PREFIX_HERE")
        register_commands(bot)
        ```
        
        And thats it! now your bot has the games implemented in [`disgames/mixins/`](./disgames/mixins/)
        
        ## Extra
        
        Note that this works with the now discontinued module [discord.py](https://pypi.org/project/discord.py) and we
        will make it compatible with other modules as soon as possible
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
