Metadata-Version: 2.1
Name: jtypes.jpype
Version: 0.6.3b3
Summary: A Python to Java bridge (ctypes/cffi-based JPype).
Home-page: http://pypi.python.org/pypi/jtypes.jpype/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: Apache License, Version 2.0 ; http://www.apache.org/licenses/LICENSE-2.0
Download-URL: http://pypi.python.org/pypi/jtypes.jpype/
Description: **Currently only as placeholder (because a base package jtypes.jvm is still in development)**
        
        jtypes.jpype
        ============
        
        A Python to Java bridge.
        
        Overview
        ========
        
          | **jtypes.jpype** 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.jpype** is a lightweight Python package, based on the *ctypes* or *cffi* library.
          | It is an almost fully compliant implementation of Steve Menard's **JPype** package
            by reimplementing whole its functionality in a clean Python instead of C/C++.
        
        About JPype:
        ------------
        
        Borrowed from the `original website`_:
        
          | **JPype** is an effort to allow python programs full access to java class libraries.
          | This is achieved not through re-implementing Python, as Jython/JPython has done,
            but rather through interfacing at the native level in both virtual machines.
          |
          | Eventually, it should be possible to replace Java with python in many, though
          | not all, situations. JSP, Servlets, RMI servers and IDE plugins are good candidates.
        
        Known Bugs/Limitations
        ----------------------
        
        - Java classes outside of a package (in the ``<default>``) cannot be imported.
        - Because of lack of JVM support, you cannot shutdown the JVM and then restart it.
        - | Some methods rely on the "current" class/caller.
          | Since calls coming directly from python code do not have a current class,
            these methods do not work.
          | The User Manual lists all the known methods like that.
        
        Requirements
        ============
        
        - Either the Sun/Oracle JRE/JDK or OpenJDK.
        
        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.jpype
        
        To ensure everything is running correctly you can run the tests using::
        
            python -m jt.jpype.tests
        
        Development
        ===========
        
        Visit `development page`_
        
        Installation from sources:
        
        Clone the `sources`_ and run::
        
            python -m pip install ./jtypes.jpype
        
        or on development mode::
        
            python -m pip install --editable ./jtypes.jpype
        
        Prerequisites:
        
        + Development is strictly based on *tox*. To install it run::
        
            python -m pip install tox
        
        License
        =======
        
          | Copyright 2013-2018 Adam Karpierz
          |
          | Licensed under the Apache License, Version 2.0
          | http://www.apache.org/licenses/LICENSE-2.0
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        .. _PyPI record: https://pypi.python.org/pypi/jtypes.jpype
        .. _original website: http://jpype.readthedocs.org
        .. _development page: https://github.com/karpierz/jtypes.jpype
        .. _sources: https://github.com/karpierz/jtypes.jpype
        
        Changelog
        =========
        
        0.6.3b3 (2018-11-08)
        --------------------
        - Synchro with JPype master branch.
        - Update of the required setuptools version.
        - Minor setup and tests improvements.
        
        0.6.3b1 (2018-05-22)
        --------------------
        - Synchro with JPype master branch.
        - Update of the required setuptools version.
        
        0.6.2b5 (2018-03-13)
        --------------------
        - Improvement and simplification of setup and packaging.
        
        0.6.2b3 (2018-01-29)
        --------------------
        - Development moved to github.
        - General improvements and update.
        
        0.6.2b1 (2017-01-19)
        --------------------
        - Synchro with JPype release.
        
        0.6.1b3 (2017-01-01)
        --------------------
        - Third beta release.
        
        0.6.1b1 (2016-12-04)
        --------------------
        - Second beta release.
        
        0.6.1b1 (2016-09-24)
        --------------------
        - First beta release.
        
        0.1.1b0 (2013-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 :: Apache Software 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
