Metadata-Version: 2.1
Name: jtypes.javabridge
Version: 1.0.18b3
Summary: Python wrapper for the Java Native Interface (ctypes/cffi-based javabridge)
Home-page: http://pypi.python.org/pypi/jtypes.javabridge/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: BSD license
Download-URL: http://pypi.python.org/pypi/jtypes.javabridge/
Description: **Currently only as placeholder (because a base package jtypes.jvm is still in development)**
        
        jtypes.javabridge
        =================
        
        Python wrapper for the Java Native Interface.
        
        Overview
        ========
        
          | **jtypes.javabridge** is a bridge between Python and Java, allowing these to intercommunicate.
          | It is an effort to allow python programs full access to Java class libraries.
        
          `PyPI record`_.
        
          | **jtypes.javabridge** is a lightweight Python package, based on the *ctypes* or *cffi* library.
          | It is an almost fully compliant implementation of Lee Kamentsky's and Vebjorn Ljosa's
            **Javabridge** package by reimplementing whole its functionality in a clean Python instead of
            Cython and C.
        
        About javabridge:
        -----------------
        
        Borrowed from the `original website`_:
        
          | The **javabridge** Python package makes it easy to start a Java virtual
            machine (JVM) from Python and interact with it. Python code can interact
            with the JVM using a low-level API or a more convenient high-level API.
        
        Requirements
        ============
        
        - Java Runtime (JRE) or Java Development Kit (JDK), and NumPy (not mandatory but highly
          recommended).
        
        Installation
        ============
        
        Prerequisites:
        
        + Python 2.7 or higher or 3.4 or higher
        
          * http://www.python.org/
          * 2.7 and 3.6 are primary test environments.
        
        + pip and setuptools
        
          * http://pypi.python.org/pypi/pip
          * http://pypi.python.org/pypi/setuptools
        
        To install run::
        
            python -m pip install --upgrade jtypes.javabridge
        
        To ensure everything is running correctly you can run the tests using::
        
            python -m jt.javabridge.tests
        
        Development
        ===========
        
        Visit `development page`_
        
        Installation from sources:
        
        Clone the `sources`_ and run::
        
            python -m pip install ./jtypes.javabridge
        
        or on development mode::
        
            python -m pip install --editable ./jtypes.javabridge
        
        Prerequisites:
        
        + Development is strictly based on *tox*. To install it run::
        
            python -m pip install tox
        
        License
        =======
        
          | Copyright (c) 2014-2018, Adam Karpierz
          |
          | Licensed under the BSD license
          | http://opensource.org/licenses/BSD-3-Clause
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        .. _PyPI record: https://pypi.python.org/pypi/jtypes.javabridge
        .. _original website: http://pythonhosted.org/javabridge
        .. _development page: https://github.com/karpierz/jtypes.javabridge
        .. _sources: https://github.com/karpierz/jtypes.javabridge
        
        Changelog
        =========
        
        1.0.18b3 (2018-11-08)
        ---------------------
        - Update of the required setuptools version.
        - Minor setup and tests improvements.
        
        1.0.18b1 (2018-10-01)
        ---------------------
        - Synchro with javabridge master branch (v.1.0.18+).
        
        1.0.17b2 (2018-05-29)
        ---------------------
        - Synchro with javabridge master branch.
        - Bug fixes and improvements in Java 9 support.
        - Update of Mozilla Rhino.
        - Update of the required setuptools version.
        
        1.0.14b4 (2018-02-26)
        ---------------------
        - Improvement and simplification of setup and packaging.
        
        1.0.14b3 (2018-01-29)
        ---------------------
        - Development moved to github.
        - General improvements and update.
        
        1.0.14b2 (2017-01-01)
        ---------------------
        - Second beta release.
        - Version numbering in sync. with the original javabridge.
        
        0.1.1a1 (2014-10-05)
        --------------------
        - Initial version.
        
Keywords: jtypes, jt, jpype, jep, pyjnius, jpy, javabridge, pyjava, jcc,,py4j, jython, java, pythonjava
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: Polish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Java
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development :: Libraries :: Java Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7.0,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
Description-Content-Type: text/x-rst
Provides-Extra: doc
Provides-Extra: test
