# gradle-python-envs
**Repository Path**: zz4/gradle-python-envs
## Basic Information
- **Project Name**: gradle-python-envs
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2019-01-15
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
Gradle Python Envs Plugin
========================
Gradle plugin to create Python envs.
This plugin is based on [gradle-miniconda-plugin](https://github.com/palantir/gradle-miniconda-plugin),
but in addition to creating Conda envs it provides:
1. A convenient DSL to specify target Python environments
2. Creating Python envs for Unix with [python-build](https://github.com/pyenv/pyenv/tree/master/plugins/python-build) for Unix
N.B.: [Common build problems](https://github.com/pyenv/pyenv/wiki/Common-build-problems) article from pyenv
3. Creating Python envs for Windows by installing msi or exe from [python.org](https://www.python.org/).
N.B.: Windows UAC should be switched off, otherwise - use Python from zip
4. Both Anaconda and Miniconda support (32 and 64 bit versions)
5. Creating Conda envrionments, conda package installation support
6. Creating Jython environments
7. Creating PyPy environments (only Unix is supported, by default pypy2.7-5.8.0 version is used)
8. Creating IronPython environments (only Windows is supported, by default [2.7.7 version](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.7) is used)
9. Virtualenv creation from any python environment created
10. Python from zip creation: downloading archive from specified url, unpacking and preparing to work with
11. Package installation for any environment or virtualenv with specified install options
Usage
-----
Apply the plugin to your project following
[`https://plugins.gradle.org/plugin/com.jetbrains.python.envs`](https://plugins.gradle.org/plugin/com.jetbrains.python.envs),
and configure the associated extension:
```gradle
envs {
bootstrapDirectory = new File(buildDir, 'bootstrap')
envsDirectory = new File(buildDir, 'envs')
// Download python zips when Windows is used from http://repository.net/%archieveName%,
// where {archieveName} is python-{version}-{architecture}.zip
zipRepository = new URL("http://repository.net/")
shouldUseZipsFromRepository = Os.isFamily(Os.FAMILY_WINDOWS)
// by default if architecture isn't specified - 64 bit one is used
// _64Bits = true
// by default pipInstallOptions equals to "--trusted-host pypi.python.org"
// to fix CERTIFICATE_VERIFY_FAILED ssl error
// pipInstallOptions = "--trusted-host pypi.python.org"
//python "envName", "version", []
python "python35_64", "3.5.3", ["django==1.9"]
//python "envName", "version", "architecture", []
python "python36_32", "3.6.2", "32", ["django==1.10"]
//virtualenv "virtualEnvName", "sourceEnvName", []
virtualenv "envPython35", "python35_64", ["pytest"]
virtualenv "envPython36", "python36_32", ["behave", "requests"]
//conda "envName", "version", "architecture"
conda "Miniconda3", "Miniconda3-latest", "64"
//conda "envName", "version", []
conda "Anaconda2", "Anaconda2-4.4.0", [condaPackage("PyQt")]
//conda "envName", "version", "architecture", []
conda "Anaconda3", "Anaconda3-4.4.0", "64", ["django==1.8"]
//condaenv "envName", "version", []
// Here will be created additional "Miniconda2-latest"
// (or another one specified in condaDefaultVersion value)
// conda interpreter to be bootstraped
condaenv "pyqt_env", "2.7", [condaPackage("pyqt")]
//condaenv "envName", "version", "sourceEnvName", []
condaenv "django19", "2.7", "Miniconda3", ["django==1.9"]
condaenv "conda34", "3.4", "Miniconda3", ["ipython==2.1", "django==1.6", "behave", "jinja2", "tox==2.0"]
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
// This links are used for envs like tox; *nix envs have such links already
link "bin/python2.7.exe", "bin/python.exe", new File(envsDirectory, "django19")
link "bin/python3.4.exe", "bin/python.exe", new File(envsDirectory, "conda34")
}
//jython "envName", []
jython "jython"
virtualenv "envJython", "jython", ["django==1.8"]
if (Os.isFamily(Os.FAMILY_UNIX)) {
//pypy "envName", []
pypy "pypy2", ["django"]
virtualenv "envPypy2", "pypy2", ["pytest"]
//pypy "envName", "version", []
//version should be in accordance with python-build
pypy "pypy3", "pypy3.5-5.8.0", ["nose"]
virtualenv "envPypy3", "pypy3", ["django"]
}
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
//ironpython "envName", []
ironpython "ironpython64", ["requests"]
//ironpython "envName", "architecture", []
ironpython "ironpython32", "32", ["requests"]
// ironpython doesn't support virtualenvs at all
}
}
```
Then invoke the `build_envs` task.
This will download and install specified python's interpreters (python, anaconda and miniconda, jython, pypy, ironpython) to `buildDir/bootstrap`.
Then it will create several conda and virtual envs in `buildDir/envs`.
Libraries listed will be installed correspondingly. Packages in list are installed with `pip install` command. If the function `condaPackage()` was called for package name, it will be installed with `conda install` command. It enables to install, for example, PyQt in env.
License
-------
The code is licensed under the Apache 2.0 License. See the included
[LICENSE](LICENSE) file for details.