Metadata-Version: 1.1
Name: evennia-wiki
Version: 0.0.1
Summary: A simple Django app to add a wiki to Evennia
Home-page: UNKNOWN
Author: Vincent Le Goff
Author-email: vincent.legoff.srs@gmail.com
License: BSD License
Description-Content-Type: text/markdown
Description: # evennia-wiki
        
        A simple wiki for `Evennia`, simple to install within an [Evennia](www.evennia.com) game.
        
        ## Installation
        
        For the time being, you should install from source.  Assuming you are in
        this directory (where the `README.md` file is):
        
            python setup.py install
        
        Then, in your Evennia folder, edit `server/conf/settings.py` to add
        the installed app:
        
        ```python
        INSTALLED_APPS += (
                # ...
                "evennia_wiki",
        )
        ```
        
        Finally, in `web/urls.py`, you should add the custom URL:
        
        ```python
        custom_patterns = [
            # ...
            url(r'^wiki/', include('evennia_wiki.urls',
                    namespace='wiki', app_name='wiki')),
        ]
        ```
        
        Don’t forget to run `evennia migrate` after that.
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
