Metadata-Version: 2.1
Name: judyz-cffi
Version: 0.8.5
Summary: Python CFFI Judy wrapper
Home-page: https://github.com/botify-labs/judyz
Author: Yves Bastide
Author-email: yves@botify.com
License: Copyright 2015 Yves Bastide
Requires-Dist: cffi (>=1.0.0)
Requires-Dist: six
Requires-Dist: typing

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Description: # judyz
        
        judyz is another (pair of) Python wrapper(s) for the [Judy](http://judy.sourceforge.net/)
        library.
        
        It implements both a [CFFI](https://cffi.readthedocs.org/) and a [Cython](http://http://cython.org/)
        wrapper.
        
        Note that the Cython wrapper is currently unmaintained: it doesn't work with PyPy, unlike CFFI.
        
        `judyz-cython` must be compiled, unlike `judyz-cffi`.
        
        ## Compilation Requirements
        
        * libjudy-dev
        * cython
        * libffi-dev
        * python-cffi (or pypy)
        * ...
        
        
        ## Distribution
        
        `judyz-cffi` is distributed as source:
        
            python setup.py sdist
        
        `judyz_cython` can be distributed as an egg:
        
            python setup.py bdist_egg
        
        To compile `judyz-cython` inplace:
        
        ```
        cd src/judycython
        python setup.py build_ext -i
        cd ../..
        nosetests
        ```
        
        ## Installation From Local Build
        
        If `pip install` doesn't work:
        `pip install --pre --no-index --find-links .../judyz/src/judyzcffi/dist/judyz_cffi-0.1.tar.gz judyz-cffi`
        
        `easy_install .../judyz/src/judyzcython/dist/judyz_cython-0.1-py2.7-linux-x86_64.egg`
        
        
        ## Usage Requirements
        
        * libjudydebian1 (not the Ubuntu 14.04 buggy one)
        * `judyz-cffi`: libffi6
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
