Metadata-Version: 2.1
Name: nekoyume
Version: 0.1.2
Summary: Decentralized MMORPG based on Dungeon World
Home-page: https://github.com/nekoyume/nekoyume
Author: JC Kim
Author-email: jc@nekoyu.me
License: LICENSE.txt
Project-URL: Bug Reports, https://github.com/nekoyume/nekoyume/issues
Project-URL: Funding, https://nekoyu.me/
Project-URL: Source, https://github.com/nekoyume/nekoyume/
Description: 
        Nekoyume
        ========
        
        |build| |coverage| |pypi| |chat| |gitter|
        
        Nekoyume is the first `MMORPG <https://en.wikipedia.org/wiki/Massively_multiplayer_online_role-playing_game>`_ based on `blockchain <https://en.wikipedia.org/wiki/Blockchain>`_.
        
        
        * Nekoyume is entirely decentralized MMORPG game.
        * Nekoyume uses `Dungeon World <https://en.wikipedia.org/wiki/Dungeon_World>`_ as a basic rule.
        * To achieve randomness on the blockchain, this project implements Hash random. (Read `white paper <//docs.nekoyu.me/white_paper.html>`_ for details.)
        
        Dependencies
        ------------
        
        * `Python <http://python.org/>`_ >= 3.6
        * `SQLite <https://www.sqlite.org/>`_ >= 3.16.0
        * `gmp <https://gmplib.org/>`_
        * (Recommended) `PostgreSQL <https://www.postgresql.org/>`_ >= 9.5
        * (Recommended) `Redis <https://redis.io/>`_
        
        Installation
        ------------
        
        Installation for development
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        .. code-block:: console
        
           $ git clone git@github.com:nekoyume/nekoyume.git
           $ cd nekoyume
           $ python3 -m venv .env
           $ source .env/bin/activate
           $ pip install -e .[dev,test]
           $ git config core.hooksPath hooks
           $ nekoyume init
        
        
        Launching node
        --------------
        
        .. code-block:: console
        
           $ pip install honcho
           $ curl https://raw.githubusercontent.com/nekoyume/nekoyume/master/Procfile > Procfile
           $ PORT=5000 honcho start
        
        
        
        Mining
        ------
        
        .. code-block:: console
        
           $ nekoyume neko
        
        
        .. |build| image:: https://circleci.com/gh/nekoyume/nekoyume.svg?style=shield&circle-token=fb83e926d78b99e4cda9788f3f3dce9e281270e3
            :target: https://circleci.com/gh/nekoyume/nekoyume
        
        .. |coverage| image:: https://codecov.io/gh/nekoyume/nekoyume/branch/master/graph/badge.svg?token=VaVMWbOpm7
          :target: https://codecov.io/gh/nekoyume/nekoyume
        
        .. |pypi| image:: https://img.shields.io/pypi/v/nekoyume.svg
          :target: https://pypi.org/project/nekoyume/
        
        .. |chat| image:: https://img.shields.io/badge/chat-on%20telegram-brightgreen.svg
          :target: https://t.me/nekoyume
        
        .. |deploy| image:: https://www.herokucdn.com/deploy/button.svg
          :target: https://heroku.com/deploy
        
        .. |gitter| image:: https://badges.gitter.im/gitterHQ/gitter.png
          :target: https://gitter.im/nekoyume-dev
        
Keywords: blockchain mmorpg game
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Other Audience
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Games/Entertainment :: Role-Playing
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: dev
Provides-Extra: test
