Metadata-Version: 1.2
Name: neocore
Version: 0.2.0
Summary: Core functionality of neo-python
Home-page: https://github.com/CityOfZion/neo-python-core
Author: City of Zion
Author-email: python@cityofzion.io
License: MIT license
Description: .. image:: https://travis-ci.org/CityOfZion/neo-python-core.svg?branch=master
                :target: https://travis-ci.org/CityOfZion/neo-python-core
        
        .. image:: https://coveralls.io/repos/github/CityOfZion/neo-python-core/badge.svg
                :target: https://coveralls.io/github/CityOfZion/neo-python-core
        
        Library for working with NEO related data in Python, without database dependencies.
        
        Currently in alpha development!
        
        * Includes datatypes like ``UInt160``, ``KeyPair``, and basic string to address and address to `UInt160` methods.
        * Used by `neo-python <https://github.com/CityOfZion/neo-python>`_.
        * https://pypi.python.org/pypi/neocore
        
        
        Getting started
        ---------------
        
        You need `Python 3.5 <https://www.python.org/downloads/release/python-354/>`_.
        
        You can install `neocore` from PyPI with ``easy_install`` or ``pip``:
        
        
        .. code-block:: console
        
            $ pip install -U neocore
        
        Alternatively, if you want to work on the code, clone this repository and setup your venv:
        
        * Clone the repo: ``git@github.com:CityOfZion/neo-python-core.git``
        * Create a Python 3 virtual environment and activate it:
        
        .. code-block:: console
        
            $ python3 -m venv venv
            $ source venv/bin/activate
        
        * Then install the requirements:
        
        .. code-block:: console
        
            $ pip install -e .
            $ pip install -r requirements_dev.txt
        
        
        Useful commands
        ^^^^^^^^^^^^^^^
        
        .. code-block:: console
        
            $ make lint
            $ make test
            $ make coverage
        
        
        =======
        History
        =======
        
        
        0.1.1 - 0.1.2 (2017-12-30)
        --------------------------
        
        * Testing of releases on PyPI with Travis CI.
        
        
        0.1.0 (2017-12-28)
        ------------------
        
        * First release on PyPI.
        
Keywords: neocore,neo,python,node
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Python: >=3.4, <3.6
