Metadata-Version: 1.1
Name: yara
Version: 1.6.1
Summary: Compile YARA rules to test against files or strings
Home-page: http://code.google.com/p/yara-project/
Author: Michael Dorman
Author-email: mjdorma@gmail.com
License: Apache Software Licence
Description: Introduction to yara-ctypes-python
        **********************************
        
        A powerful python wrapper for `libyara`_.
        
        Why:
        
        * ctypes releases the GIL on system function calls...  Run your PC to its
          true potential.
        * No more building the PyC extension...  
        * I found a few bugs and memory leaks and wanted to make my life simple.
        
        
        As a reference and guide to yara-ctypes see: `yara-ctypes doc`_
        
        
        For additional tips / tricks with this wrapper feel free to post a question 
        `here <https://github.com/mjdorma/yara-ctypes/issues>`_. 
        
        
        [mjdorma+yara-ctypes@gmail.com]
        
        
        Install and run
        ===============
        
        Simply run the following::
        
            > python setup.py install
            > python setup.py test
            > python -m yara.scan -h
        
        or::
        
            > pip install yara
            > python -m yara.scan -h
        
        
        .. note::
        
            If the package does not contain a pre-compiled libyara library for your
            platform you need to build and install it.  (see libyara build notes)
        
        
        Compatability
        =============
        
        *yara-ctypes* is implemented to be compatible with Python 2.6+ and Python 3.x. It
        has been tested against the following Python implementations:
        
        Ubuntu 12.04:
        
         + CPython 2.7 (32bit, 64bit)
         + CPython 3.2 (32bit, 64bit)
        
        Ubuntu 11.10 |build_status|:
        
         + CPython 2.6 (32bit)
         + CPython 2.7 (32bit)
         + CPython 3.2 (32bit)
         + PyPy 1.9.0 (32bit)
        
        Windows 7:
        
         + CPython 2.6 (32bit, 64bit)
         + CPython 3.2 (32bit, 64bit)
        
        
        Continuous integration testing is provided by `Travis CI <http://travis-ci.org/>`_.
        
        
        Issues
        ======
        
        Source code for *yara-ctypes* is hosted on `GitHub <https://github.com/mjdorma/yara-ctypes>`_. 
        Please file `bug reports <https://github.com/mjdorma/yara-ctypes/issues>`_
        with GitHub's issues system.
        
        
        
        .. _yara-ctypes doc: http://packages.python.org/yara/
        .. _libyara: http://code.google.com/p/yara-project
        .. |build_status| image:: https://secure.travis-ci.org/mjdorma/yara-ctypes.png?branch=master
           :target: http://travis-ci.org/#!/mjorma/yara-ctypes
        
Platform: cygwin
Platform: win
Platform: linux
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Security
Classifier: Topic :: System :: Monitoring
