Metadata-Version: 2.1
Name: jtypes.jep
Version: 3.8.2a2
Summary: Java Embedded Python (ctypes/cffi-based Jep)
Home-page: http://pypi.python.org/pypi/jtypes.jep/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: zlib/libpng License ; http://opensource.org/licenses/zlib
Download-URL: http://pypi.python.org/pypi/jtypes.jep/
Description: **Currently only as placeholder (because a base package jtypes.jvm is still in development)**
        
        jtypes.jep
        ==========
        
        Java Embedded Python.
        
        Overview
        ========
        
          | **jtypes.jep** embeds CPython in Java.
        
          `PyPI record`_.
        
          | **jtypes.jep** is a lightweight Python package, based on the *ctypes* or *cffi* library.
          | It is an almost fully compliant implementation of Mike Johnson's **Jep** package
            by reimplementing its functionality in a clean Python instead of C.
        
        About Jep:
        ----------
        
        Borrowed from the `original website`_:
        
          **Jep** embeds CPython in Java through JNI and is safe to use in a heavily
          threaded environment. 
        
          Some benefits of embedding CPython in a JVM:
        
          * Using the native Python interpreter may be much faster than alternatives.
          * Python is mature, well supported, and well documented.
          * Access to high quality Python modules, both native CPython extensions and
            Python-based.
          * Compilers and assorted Python tools are as mature as the language.
          * Python is an interpreted language, enabling scripting of established
            Java code without requiring recompilation.
          * Both Java and Python are cross platform, enabling deployment to different
            operating systems.
        
          Notable features
        
          * Interactive Jep console much like Python's interactive console
          * Supports multiple, simultaneous, mostly sandboxed sub-interpreters
          * Numpy support for Java primitive arrays
        
        Requirements
        ============
        
        - Java >= 1.7 - either the Sun/Oracle JRE/JDK or OpenJDK.
        - NumPy >= 1.7 (optional)
        
        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.jep
        
        To ensure everything is running correctly you can run the tests using::
        
            python -m jt.jep.tests
        
        Development
        ===========
        
        Visit `development page`_
        
        Installation from sources:
        
        Clone the `sources`_ and run::
        
            python -m pip install ./jtypes.jep
        
        or on development mode::
        
            python -m pip install --editable ./jtypes.jep
        
        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 zlib/libpng License
          | http://opensource.org/licenses/zlib
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        .. _PyPI record: https://pypi.python.org/pypi/jtypes.jep
        .. _original website: https://github.com/ninia/jep
        .. _development page: https://github.com/karpierz/jtypes.jep
        .. _sources: https://github.com/karpierz/jtypes.jep
        
        Changelog
        =========
        
        3.8.2a2 (2018-11-08)
        --------------------
        - Synchro with pyjnius master branch.
        - Update of the required setuptools version.
        - Minor setup and tests improvements.
        
        3.7.1b4 (2018-05-23)
        --------------------
        - Update of the required setuptools version.
        - Documentation update.
        
        3.7.1b3 (2018-02-26)
        --------------------
        - Improvement and simplification of setup and packaging.
        
        3.7.1b2 (2018-01-29)
        --------------------
        - Development moved to github.
        - General improvements and update.
        
        3.7.1b1 (2017-01-01)
        --------------------
        - First beta release.
        
        1.1.0b1 (2017-01-01)
        --------------------
        - First beta release.
        
        1.1.0b1 (2017-01-01)
        --------------------
        - First beta release.
        
        0.1.1 (2005-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 :: zlib/libpng 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
