Metadata-Version: 2.1
Name: nekoyume
Version: 0.0.3
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|
        
        Nekoyume is world's 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 use randomness on the blockchain, This project implemented Hash random. (see `white paper <//docs.nekoyu.me/white_paper.html>`_.)
        
        Dependencies
        ------------
        
        * `Python <http://python.org/>`_ >= 3.6
        * `Redis <https://redis.io/>`_
        * `SQLite <https://www.sqlite.org/>`_ >= 3.16.0
        * `gmp <https://gmplib.org/>`_
        * (Recommended) `PostgreSQL <https://www.postgresql.org/>`_ >= 9.5
        
        Installation
        ------------
        
        Installation to local environment
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        .. code-block:: console
        
           $ pip install nekoyume
           $ nekoyume init
        
        Installation to Heroku
        ^^^^^^^^^^^^^^^^^^^^^^^
        |deploy|
        
        Installation for Development
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        .. code-block:: console
        
           $ git clone git@github.com:nekoyume/nekoyume.git
           $ cd nekoyume
           $ mkvirtualenv -p $(which python3.6) -a $(pwd) nekoyume
           $ pip install -e .[dev,test]
        
        
        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
        
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
