{ "info": { "author": "Galaxy Project and Community", "author_email": "jmchilton@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: Academic Free License (AFL)", "Natural Language :: English", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development", "Topic :: Software Development :: Code Generators", "Topic :: Software Development :: Testing" ], "description": ".. figure:: https://raw.githubusercontent.com/jmchilton/planemo/master/docs/planemo_logo.png\n :alt: Planemo Logo\n :align: center\n :figwidth: 100%\n :target: https://github.com/galaxyproject/planemo\n\nCommand-line utilities to assist in developing Galaxy_ and `Common Workflow Language`_ tools.\n\n.. image:: https://readthedocs.org/projects/planemo/badge/?version=latest\n :target: http://planemo.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://badge.fury.io/py/planemo.svg\n :target: https://pypi.python.org/pypi/planemo/\n :alt: Planemo on the Python Package Index (PyPI)\n\n.. image:: https://travis-ci.org/galaxyproject/planemo.png?branch=master\n :target: https://travis-ci.org/galaxyproject/planemo\n :alt: Build Status\n\n.. image:: https://travis-ci.org/jmchilton/planemo-extended-tests.svg?branch=master\n :target: https://travis-ci.org/jmchilton/planemo-extended-tests\n :alt: Build Status of Extended Tests\n\n.. image:: https://coveralls.io/repos/galaxyproject/planemo/badge.svg?branch=master\n :target: https://coveralls.io/r/galaxyproject/planemo?branch=master\n :alt: Coverage Status\n\n* Free software: Academic Free License version 3.0\n* Documentation: https://planemo.readthedocs.io.\n* Code: https://github.com/galaxyproject/planemo\n\n\nQuick Start\n-----------\n\n-----------------\nObtaining\n-----------------\n\nFor a traditional Python installation of Planemo, first set up a virtualenv\nfor ``planemo`` (this example creates a new one in ``.venv``) and then\ninstall with ``pip``. Planemo requires pip 7.0 or newer.\n\n::\n\n $ virtualenv .venv; . .venv/bin/activate\n $ pip install \"pip>=7\" # Upgrade pip if needed.\n $ pip install planemo\n\nFor information on updating Planemo, installing the latest development release,\nor installing Planemo via `Bioconda `__\n- checkout the `installation `__\ndocumentation.\n\nPlanemo is also available as a `virtual appliance\n`_ bundled\nwith a preconfigured Galaxy server and set up for Galaxy_ and\n`Common Workflow Language`_ tool development.\nYou can choose from open virtualization format (OVA_, .ova) or Docker_\nappliances.\n\n-----------------\nBasics - Galaxy\n-----------------\n\nThis quick start will assume you have a directory with one or more Galaxy\ntool XML files. If no such directory is available, one can be quickly created for\ndemonstrating ``planemo`` as follows ``project_init --template=demo mytools; cd mytools``.\n\nPlanemo can check tool XML files for common problems and best\npractices using the ``lint`` `command `_\n(also aliased as ``l``).\n\n::\n\n $ planemo lint\n\nLike many ``planemo`` commands - by default this will search the\ncurrent directory and use all tool files it finds. It can be explicitly\npassed a path to tool files or a directory of tool files.\n\n::\n\n $ planemo l randomlines.xml\n\nThe ``lint`` command takes in additional options related to\nreporting levels, exit code, etc. These options are described\nin the `docs `_\nor (like with all commands) can be accessed by passing ``--help`` to it.\n\n::\n\n $ planemo l --help\n Usage: planemo lint [OPTIONS] TOOL_PATH\n\nOnce tools are syntactically correct - it is time to test. The ``test``\n`command `__\ncan be used to test a tool or a directory of tools.\n\n::\n\n\t$ planemo test --galaxy_root=../galaxy randomlines.xml\n\nIf no ``--galaxy_root`` is defined, Planemo will download and configure\na disposable Galaxy instance for testing.\n\nPlanemo will create a HTML output report in the current directory named\n``tool_test_output.html`` (override with ``--test_output``). See an\n`example `_\nof such a report for Tophat.\n\nOnce tools have been linted and tested - the tools can be viewed in a\nGalaxy interface using the ``serve`` (``s``) `command\n`__.\n\n::\n\n\t$ planemo serve\n\nLike ``test``, ``serve`` requires a Galaxy root and one can be\nexplicitly specified with ``--galaxy_root`` or installed dynamically\nwith ``--install_galaxy``.\n\nFor more information on building Galaxy tools in general please check out\n`Building Galaxy Tools Using Planemo`_.\n\n----------------------------------\nBasics - Common Workflow Language\n----------------------------------\n\nThis quick start will assume you have a directory with one or more `Common Workflow\nLanguage`_ YAML files. If no such directory is available, one can be quickly created for\ndemonstrating ``planemo`` as follows ``planemo project_init --template=seqtk_complete_cwl mytools; cd mytools``.\n\nPlanemo can check tools YAML files for common problems and best\npractices using the ``lint`` `command `_\n(also aliased as ``l``).\n\n::\n\n $ planemo lint\n\nLike many ``planemo`` commands - by default this will search the\ncurrent directory and use all tool files it finds. It can be explicitly\npassed a path to tool files or a directory of tool files.\n\n::\n\n $ planemo l seqtk_seq.cwl\n\nThe ``lint`` command takes in additional options related to\nreporting levels, exit code, etc. These options are described\nin the `docs `_\nor (like with all commands) can be accessed by passing ``--help`` to it.\n\n::\n\n $ planemo l --help\n Usage: planemo lint [OPTIONS] TOOL_PATH\n\nOnce tools are syntactically correct - it is time to test. The ``test``\n`command `__\ncan be used to test a CWL tool, workflow, or a directories thereof.\n\n::\n\n $ planemo test --engine cwltool seqtk_seq.cwl\n\nPlanemo will create a HTML output report in the current directory named\n``tool_test_output.html``. Check out the file ``seqtk_seq_tests.yml`` for\nan example of Planemo test for a CWL tool. A test consists of any number of\njobs (with input descriptions) and corresponding output assertions.\n\nCheckout the `Commmon Workflow User Guide`_ for more information on developing\nCWL tools in general and `Building Common Workflow Language Tools`_ for more\ninformation on using Planemo to develop CWL tools.\n\n---------\nTool Shed\n---------\n\nPlanemo can help you publish tools to the Galaxy Tool Shed.\nCheck out `Publishing to the Tool Shed`_ for more information.\n\n------\nConda\n------\n\nPlanemo can help develop tools and Conda packages in unison.\nCheck out the `Galaxy `__ or `CWL\n`__ version of the \"Dependencies and Conda\" tutorial\nfor more information.\n\n-----------------------\nDocker and Containers\n-----------------------\n\nPlanemo can help develop tools that run in \"Best Practice\" containers for\nscientific workflows. Check out the `Galaxy `__ or `CWL\n`__ version of the \"Dependencies and Containers\" tutorial for more information.\n\n.. _Galaxy: http://galaxyproject.org/\n.. _GitHub: https://github.com/\n.. _Conda: http://conda.pydata.org/\n.. _Docker: https://www.docker.com/\n.. _Vagrant: https://www.vagrantup.com/\n.. _Travis CI: http://travis-ci.org/\n.. _`tools-devteam`: https://github.com/galaxyproject/tools-devteam\n.. _`tools-iuc`: https://github.com/galaxyproject/tools-iuc\n.. _Building Galaxy Tools Using Planemo: http://planemo.readthedocs.io/en/latest/writing_standalone.html\n.. _Publishing to the Tool Shed: http://planemo.readthedocs.org/en/latest/publishing.html\n.. _Common Workflow Language: https://www.commonwl.org/\n.. _Commmon Workflow User Guide: http://www.commonwl.org/user_guide/\n.. _Building Common Workflow Language Tools: http://planemo.readthedocs.io/en/latest/writing_cwl_standalone.html\n.. _OVA: https://en.wikipedia.org/wiki/Open_Virtualization_Format\n\n\n\n\n\nHistory\n-------\n\n.. to_doc\n\n---------------------\n0.62.1 (2019-10-14)\n---------------------\n\n* Init & update submodules when installing and creating packages. Stop\n distributing eggs (thanks to `@nsoranzo`_). 1ab8530_\n\n---------------------\n0.62.0 (2019-10-11)\n---------------------\n\n* Use ``unicodify()`` on exceptions and subprocess outputs (thanks to\n `@nsoranzo`_) `Pull Request 944`_\n* Do not override ``None`` with empty string (thanks to `@ic4f`_). `Pull Request\n 950`_\n* Update Docker template for training material generation (thanks to\n `@bedroesb`_). `Pull Request 958`_\n* Add support for suite of repos with different owners (thanks to `@nsoranzo`_).\n `Pull Request 959`_\n* Link for collection details updated in the docs (thanks to `@martin-raden`_).\n `Pull Request 963`_\n* Move most tests to Python 3.7, drop Python 3.4 (thanks to `@nsoranzo`_).\n `Pull Request 964`_\n* Remove confusing warning `Pull Request 966`_\n\n---------------------\n0.61.0 (2019-07-08)\n---------------------\n\n* Training - fix empty repeat + some formatting (thanks to `@bebatut`_). `Pull\n Request 926`_\n* Training - add bibliography to tutorial template (thanks to `@shiltemann`_).\n `Pull Request 938`_\n* Training - support new class definition for input in workflow step (thanks to\n `@bebatut`_). `Pull Request 943`_\n* Various tool tutorial fixes ahead of GCC 2019 (thanks to `@nsoranzo`_).\n `Pull Request 940`_\n* Return validation error if doi is empty (thanks to `@nsoranzo`_).\n `Pull Request 937`_\n\n---------------------\n0.60.0 (2019-05-31)\n---------------------\n\n* Return validation error if doi is empty `Pull Request 937`_\n* Add junit as test reporter (thanks to `@selten`_). `Pull Request 935`_\n* Update galaxy.xsd for new python 3 compatibility attribute (thanks to `@martenson`_). `Pull Request\n 931`_\n* Documentation: add a little warning for (thanks to\n `@bernt-matthias`_). `Pull Request 930`_\n\n---------------------\n0.59.0 (2019-05-09)\n---------------------\n\n* Add ability to test data manager tools (thanks to `@mvdbeek`_).\n `Pull Request 912`_\n* Update Training for new requirement definition (thanks to `@bebatut`_).\n `Pull Request 913`_\n* Drop amqp workaround (thanks to `@mvdbeek`_). `Pull Request 917`_\n* Use ``yaml.safe_load()`` instead of deprecated ``load()`` (thanks to `@nsoranzo`_).\n `Pull Request 921`_\n* Allow converting ``tool_test_report.json`` to xunit (thanks to `@mvdbeek`_).\n `Pull Request 918`_\n* Fix error if testcase.data.job does not exist (thanks to `@mvdbeek`_).\n `Pull Request 924`_\n* Fix deprecated ``getchildren()`` (thanks to `@nsoranzo`_).\n `Pull Request 925`_\n\n---------------------\n0.58.2 (2019-03-01)\n---------------------\n\n* Fix display of tool ids in planemo html report (thanks to `@mvdbeek`_).\n `Pull Request 908`_\n* Single quotes for file names (thanks to `@bernt-matthias`_). `Pull Request\n 909`_\n* Fix doc linting (thanks to `@mvdbeek`_). `Pull Request 910`_\n* Update TS categories (thanks to `@nsoranzo`_). 07dc6e0_\n* Close tag in doc help, to help with copy&paste (thanks to `@blankenberg`_).\n `Pull Request 914`_\n* Update the tool XSD file (thanks to `@bgruening`_). `Pull Request 915`_\n\n---------------------\n0.58.1 (2019-01-03)\n---------------------\n\n* Update galaxy-lib requirement to 18.9.2 to add Python 3.7 support (thanks to\n `@nsoranzo`_). `Pull Request 906`_\n* Fix command run by `planemo test --skip_venv` (thanks to `@nsoranzo`_).\n `Pull Request 907`_\n\n---------------------\n0.58.0 (2019-01-01)\n---------------------\n\n* Remove deprecated ``sudo: false`` from .travis.yml (thanks to `@nsoranzo`_).\n `Pull Request 902`_\n* Do not skip Galaxy client build for ``planemo serve``. Install Galaxy when the\n directory specified with ``--galaxy_root`` does not exist or is empty. (thanks\n to `@nsoranzo`_). `Pull Request 895`_, `Issue 845`_\n\n---------------------\n0.57.1 (2018-11-23)\n---------------------\n\n* Fix username validation for shed linting (thanks to `@martenson`_).\n `Pull Request 899`_, `Issue 898`_\n\n---------------------\n0.57.0 (2018-11-19)\n---------------------\n\n* Allow ``workflow_convert`` to convert a native ``.ga`` workflows to format 2 (yaml).\n `Pull Request 896`_\n* New command (``workflow_edit``) to open workflow in a synchronized graphical editor.\n `Pull Request 894`_\n* Conda tutorial fixes (thanks to `@nsoranzo`_). `Pull Request 876`_\n* Enable ``--conda_use_local`` option for ``planemo test`` (thanks to\n `@nsoranzo`_). `Pull Request 876`_\n* When testing, skip workflow outputs that do not have a `label` set (thanks to\n `@bgruening`_). `Pull Request 893`_\n* Add ``__repr__`` for ``TestCase`` to improve debugging Planemo\n (thanks to `@bgruening`_). `Pull Request 892`_\n* Increase IO polling interval over time (thanks to `@martenson`_).\n `Pull Request 891`_\n* Sync galaxy xsd and fix tests (thanks to `@mvdbeek`_).\n `Pull Request 889`_\n* Linting fix for ``W605`` (thanks to `@martenson`_). `Pull Request 888`_\n* Add icon for repeat parameters in training (thanks to `@bebatut`_).\n `Pull Request 887`_\n\n---------------------\n0.56.0 (2018-10-30)\n---------------------\n\n* Allow selection of Python version when starting managed Galaxy\n (thanks to `@mvdbeek`_). `Pull Request 874`_\n* Change the channel priority of conda (again). (thanks to `@bgruening`_).\n `Pull Request 867`_\n* Some small english corrections (thanks to `@erasche`_). `Pull Request 868`_\n* Print the list of excluded paths when running ``ci_find_repos``\n (thanks to `@nsoranzo`_). `Pull Request 877`_\n* Improved XSD lint reporting. `Pull Request 871`_\n* Fix Planemo writing a file called ``gx_venv_None``. `Pull Request 870`_\n* Update cwltool and galaxy-lib dependencies for Python 3.7 (thanks to\n `@nsoranzo`_). `Pull Request 864`_\n* Fix to make workflow testing more robust.\n `Pull Request 882`_\n\n---------------------\n0.55.0 (2018-09-12)\n---------------------\n\n* Add commands to create Galaxy training materials (thanks to `@bebatut`_).\n `Pull Request 861`_\n* Fix `planemo test` when TEMP env variable contain spaces (thanks to\n `@nsoranzo`_).\n `Pull Request 851`_\n* Support testing a completely remote galaxy instance (thanks to `@erasche`_).\n `Pull Request 856`_\n* Allow naming history from command line (thanks to `@erasche`_).\n `Pull Request 860`_\n* Sync galaxy.xsd from galaxy repo (thanks to `@nsoranzo`_).\n `Pull Request 866`_\n* Fix ServeTestCase.test_shed_serve test (thanks to `@nsoranzo`). bad810a_\n\n---------------------\n0.54.0 (2018-06-06)\n---------------------\n\n* Better support for testings against different versions of Galaxy efficiently and robustly.\n `Pull Request 849`_\n* New database version (thanks to `@bgruening`_).\n `Pull Request 847`_\n* Hyperlink DOIs against preferred resolver (thanks to `@katrinleinweber`_).\n `Pull Request 850`_\n* Tests for collection inputs to workflows. `Pull Request 843`_\n* Bring in Ephemeris sleep function - hopefully makes serve tests a bit more robust.\n b12b117_\n* More tutorial testing, tutorial updates.\n 016b923_, 324c776_, 2002b49_\n* More isolated ``test_shed_upload.py`` tests. 72d2ca7_\n* Add filetype support for workflow test inputs (thanks to `@bgruening`_).\n `Pull Request 842`_\n* Add ``--no_shed_install`` option, to prevent shed installs as part of workflow testing.\n `Pull Request 841`_\n* Small docs fix (thanks to `@erasche`_). `Pull Request 848`_\n\n---------------------\n0.53.0 (2018-05-22)\n---------------------\n\n* Make Planemo testing easier for CWL tools and workflows in various ways and update\n tutorials to reflect these simplifications. `Pull Request 837`_\n* Test and fix running workflow tests against externally managed Galaxy servers.\n `Pull Request 833`_, `Pull Request 836`_\n* Allow using URIs for inputs of workflow test. `Pull Request 840`_\n* Slide Galaxy testing window to include 18.05 and drop 17.09. `Pull Request 838`_\n\n---------------------\n0.52.0 (2018-05-20)\n---------------------\n\n* Allow optional disabling of Galaxy single user mode. `Pull Request 835`_\n* Fix for path pasting options during workflow testing. `Pull Request 834`_\n\n---------------------\n0.51.0 (2018-05-19)\n---------------------\n\n* Fix essentially all Conda_ and BioContainers_ related functionality to allow parity between\n CWL_ and existing Galaxy functionality - fixes and enhances many commands including ``lint``,\n ``conda_install``, ``conda_env``, ``test``, ``run``, and ``mull``.\n `Pull Request 828`_\n* Add two new tutorials for `Conda\n `__\n and `Container\n `__\n development with CWL tools that mirrors the existing tutorials for Galaxy tools - including new\n CWL exercises, answers, and example project templates.\n 347c622_\n* Improve the CWL generated by the ``tool_init`` command to properly deal with\n ``SoftwareRequirement`` s and generate more idiomatic CWL.\n `Pull Request 820`_, a5c72e3_\n* Add new engine type (``--engine toil``) for testing and running CWL_ tools (requires\n manually installing Toil_ with ``pip install toil`` in Planemo's environment).\n `Pull Request 831`_\n* Add `documentation `__\n for the Galaxy Workflow and CWL_ test format files (includes information on configuring\n various test engines).\n `Pull Request 832`_\n* Better default logging config for CWL development. `Pull Request 830`_\n* Various fixes for the ``conda_search`` command. `Pull Request 826`_\n* Fix test coverage configuration. `Pull Request 822`_\n* Reorganize .travis.yml for clarity. `Pull Request 829`_\n* More isolated, robust unit tests that use git_.\n `Pull Request 827`_, `Pull Request 818`_\n* Fix default list of best-practice Conda channels. `Pull Request 825`_\n* Refactor tests to speed up quick tests - fewer buggy URLs fetched in \"quick\" mode.\n `Pull Request 823`_\n* Fix upload configuration of workflow testing to default (overrideable) external Galaxies\n to not use path pasting.\n `Pull Request 816`_\n* Fix test number parsing for workflow tests. `Pull Request 817`_\n\n---------------------\n0.50.1 (2018-05-11)\n---------------------\n\n* Fix the process of waiting on Galaxy to boot up for the Docker Galaxy container ``--engine``.\n\n---------------------\n0.50.0 (2018-05-10)\n---------------------\n\n* Fixes and small CLI tweaks to get the Docker Galaxy container working as an ``--engine`` for the\n run, serve, and test commands.\n\n---------------------\n0.49.2 (2018-05-09)\n---------------------\n\n* Various small fixes for new external Galaxy engine type.\n\n---------------------\n0.49.1 (2018-05-06)\n---------------------\n\n* Fix PyPI_ README rendering for 0.49.0 release changes.\n\n---------------------\n0.49.0 (2018-05-06)\n---------------------\n\n* Implement external Galaxy engine. `Pull Request 781`_\n* Restructure serve testing code for reuse. `Pull Request 795`_\n* Improve test report handling for JSON generated via galaxy-lib testing\n script. `Pull Request 799`_\n* Improve how various branches of Galaxy are tested. `Pull Request 800`_\n* Added documentation for ``GALAXY_MEMORY_MB`` (thanks to `@bernt-matthias`_).\n `Pull Request 801`_\n* Log tool config in verbose logging mode. `Pull Request 802`_\n* Replace ``r`` channel with ``conda-forge`` (thanks to `@bgruening`_).\n `Pull Request 805`_\n* Sync ``galaxy.xsd`` with latest Galaxy updates (thanks to `@nsoranzo`_).\n `Pull Request 806`_\n* Use ``requests.get()`` when validating http URLs (thanks to `@nsoranzo`_).\n `Pull Request 809`_\n* Do not consider tools with \"deprecated\" in the path (thanks to\n `@bgruening`_). `Pull Request 810`_\n* Automatically load tools shipped with Galaxy when testing, running, or serving\n workflows that reference these tools. `Pull Request 790`_\n* Revise README and touch up documentation in general. `Pull Request 787`_\n* Various small changes to testing and test framework. `Pull Request 792`_\n* Various Python 3 fixes. 8cfe9e9_, 41f7df1_\n* Fixes for Galaxy 18.0X releases.\n `Pull Request 803`_, dc443d6_\n\n---------------------\n0.48.0 (2018-02-28)\n---------------------\n\n* Run all CI tests against Python 3 (thanks to `@nsoranzo`_).\n `Pull Request 768`_ and `Pull Request 774`_\n* Python 3 fix - subprocess with ``universal_newlines=True``\n (thanks to `@peterjc`_).\n `Pull Request 764`_\n* Record CWL_ conformance test results using JUnit xml\n (thanks to `@mr-c`_).\n `Pull Request 756`_\n* Restore run test case for simple Galaxy tools.\n `Pull Request 769`_\n* Enhancements to Galaxy profiles and workflow testing.\n `Pull Request 773`_\n* Fix resolving & installing shed repositories from workflows for ``test``\n and ``run`` commands.\n `Pull Request 776`_\n* Implement planemo command to convert format 2 workflows into .ga workflows.\n `Pull Request 771`_\n* Add a native Galaxy workflow (.ga) testing test.\n `Pull Request 770`_\n* Drop Brew support but add more detailed install instructions.\n `Pull Request 761`_\n* Clean up CWL_ conformance test execution. `Pull Request 753`_\n* Assorted small CWL_ and deamon serve fixes. `Pull Request 759`_\n\n\n---------------------\n0.47.0 (2017-11-18)\n---------------------\n\n* Update to the latest Galaxy tool XSD (thanks to `@nsoranzo`_).\n `Pull Request 747`_\n* Re-fix problem when shed_update would fail if nothing to update\n (thanks to `@nsoranzo`_). `Pull Request 747`_\n* Update instructions for installation via conda (thanks to `@nsoranzo`_) .\n `Pull Request 743`_\n* Bug fix for MacOS `chmod` doesn't support `--recursive` flag.\n (thanks to `@dfornika`_). `Pull Request 739`_\n* Bug fix to also `socket.error` when linting URLs\n (thanks to `@nsoranzo`_). `Pull Request 738`_\n* Disable broken tests. `Pull Request 745`_\n\n---------------------\n0.46.1 (2017-09-26)\n---------------------\n\n* Rev to latest versions of bioblend_ and `galaxy-lib`_ for various fixes\n related to CWL_.\n\n---------------------\n0.46.0 (2017-09-15)\n---------------------\n\n* Change behavior of ``--docker`` flag, for a few releases it would require\n Galaxy use a container for every non-upload tool. This breaks various\n conversion tools for instance and so was reverted.\n `Pull Request 733`_\n* Add 'Accept' header when linting doc URLs (thanks to `@nsoranzo`_).\n `Pull Request 725`_\n* Fix `--conda_auto_install` help (thanks to `@nsoranzo`_).\n `Pull Request 727`_\n* Incremental progress toward CWL support via Galaxy.\n `Pull Request 729`_, `Pull Request 732`_\n* Update galaxy-lib to latest version to fix various issues.\n `Pull Request 730`_\n* Fix lint detected problems with documentation.\n `Pull Request 731`_\n\n---------------------\n0.45.0 (2017-09-06)\n---------------------\n\n* Update to the latest `galaxy-lib`_ for Conda fixes. (thanks `@nsoranzo`_)\n and updated CWL_ utilities. `Pull Request 716`_, `Pull Request 723`_\n* Update Conda_ channel order to sync with Bioconda_\n (thanks to `@nsoranzo`_). `Pull Request 715`_\n* Experimental support running CWL_ workflows through the CWL_ fork of Galaxy.\n* Mention ``planemo command --help`` in main help\n (thanks to `@peterjc`_). `Pull Request 709`_\n* Bugfix handle ``None`` requirement versions when registering containers\n (thanks to `@bgruening`_). `Pull Request 704`_\n* Bugfix for dependencies by pinning ruamel.yaml version\n (thanks to `@mvdbeek`_). `Pull Request 720`_\n\n---------------------\n0.44.0 (2017-06-22)\n---------------------\n\n* Fix and improve Galaxy root option specification options.\n `Pull Request 701`_, 8a608e0_\n* Update `planemo mull` to use a default action of `build-and-test` since\n `build` no longer cleans up itself. ecc1bc2_\n* Add a command to pre-install Involucro_.\n `Pull Request 702`_\n\n---------------------\n0.43.0 (2017-06-22)\n---------------------\n\n* Remove stdio from generated tools - just use exit_code for everything.\n 91b6fa0_\n* Implement some ad-hoc documentation tests. `Pull Request 699`_\n* A large number of small enhancements and fixes for the documentation and\n example projects.\n\n---------------------\n0.42.1 (2017-06-16)\n---------------------\n\n* Fix Readme typos (thanks to `@manabuishii`_) 904d77a_\n* Fix `container_register` to create pull requests against the newly finalized home of the\n multi-package-containers registry repository.\n 9636682_\n* Fix `use_global_config` and `use_env_var` for options with unspecified defaults.\n 475104c_\n\n\n---------------------\n0.42.0 (2017-06-15)\n---------------------\n\n* Conda/Container documentation and option naming improvements. `Pull Request\n 684`_\n* Sync `galaxy.xsd` with latest upstream Galaxy updates (thanks to `@nsoranzo`_).\n `Pull Request 687`_\n* Fix `ci_find_repos` command to not filter repos whose only modifications where\n in subdirs (thanks to `@nsoranzo`_).\n `Pull Request 688`_\n* Update `container_register` for mulled version 2 and repository name changes.\n `Pull Request 689`_\n* Better pull request messages for the `container_register` command.\n `Pull Request 690`_\n\n---------------------\n0.41.0 (2017-06-05)\n---------------------\n\n* Fix ``shed_update`` not fail if there is nothing to update\n (thanks to `@nsoranzo`_). `Issue 494`_, `Pull Request 680`_\n* Conda documentation and option naming improvements.\n `Pull Request 683`_\n* Implement ``container_register`` for tool repositories.\n `Pull Request 675`_\n* Fix ``hub`` binary installation for Mac OS X.\n `Pull Request 682`_\n\n---------------------\n0.40.1 (2017-05-03)\n---------------------\n\n* Fix data manager configuration to not conflict with original Galaxy at\n ``galaxy_root`` (thanks to `@nsoranzo`_). `Pull Request 662`_\n* Fix ``filter_paths()`` to not partial match paths when filtering shed repositories\n (thanks to `@nsoranzo`_). `Pull Request 665`_\n* Fix description when creating ``.shed.yml`` files (thanks to `@RJMW`_).\n `Pull Request 664`_\n\n---------------------\n0.40.0 (2017-03-16)\n---------------------\n\n* Implement instructions and project template for GA4GH Tool Execution\n Challenge Phase 1. 84c4a73_\n* Eliminate Conda hack forcing ``/tmp`` as temp directory. b4ae44d_\n* Run dependency script tests in isolated directories. 32f41c9_\n* Fix OS X bug in ``planemo run`` by reworking it to wait using urllib instead of sockets.\n 3129216_\n\n---------------------\n0.39.0 (2017-03-15)\n---------------------\n\n* Implement documentation and examples for Conda-based dependency development (under\n \"Advanced\" topics).\n `Pull Request 642`_, `Pull Request 643`_\n* Implement documentation and examples for container-based dependency development (under\n \"Advanced\" topics).\n 0a1abfe_\n* Implement a ``planemo conda_search`` command for searching best practice channels\n from the command line.\n `Pull Request 642`_\n* Allow Planemo to work with locally built Conda packages using the ``--conda_use_local``\n command.\n `Pull Request 643`_, `Issue 620`_\n* Implement an ``open`` (or just ``o``) command to quickly open the last test results\n (or any file if supplied). `Pull Request 641`_\n* Linting improvements and fixes due to `galaxy-lib`_ update.\n * WARN on test output names not found or not matching.\n * INFO correct information about stdio if profile version is found.\n * WARN if profile version is incorrect.\n * INFO profile version\n * Fix ``assert_command`` not detected as a valid test (fixes `Issue 260`_).\n* Have ``lint --conda_requirements`` check that at least one actual requirement is found.\n 6638caa_\n* Allow ``conda_install`` to work with packages as well as just tools.\n 8faf661_\n* Add ``--global`` option to conda_install to install requirements into global Conda setup\n instead of using an environment.\n 8faf661_\n* Implement ``planemo lint --biocontainer`` that checks that a tool has an available BioContainer\n registered.\n 0a1abfe_\n* Add more options and more documentation to the ``planemo mull`` command.\n 0a1abfe_\n* Hack around a bug in Conda 4.2 that makes it so ``planemo mull`` doesn't work out of the box on\n Mac OS X.\n 0a1abfe_\n* Allow URIs to be used instead of paths for a couple operations. ce0dc4e_\n* Implement non-strict CWL parsing option. 4c0f100_\n* Fixes for changes to cwltool_ and general CWL-relate functionality.\n 3c95b7b_, 06bcf19_, 525de8f_, 9867e56_, 9ab4a0d_\n* Eliminate deprecated XML-based abstraction from ``planemo.tools``. 04238d3_\n* Fix ``MANIFEST.in`` entry that was migrated to galaxy-lib. ced5ce2_\n* Various fixes for the command ``conda_env``. `Pull Request 640`_\n* Improved command help - both formatting and content. `Pull Request 639`_\n* Implement a ``--no_dependency_resolution`` option disabling conda dependency\n resolver.\n `Pull Request 635`_, `Issue 633`_\n* Tests for new linting logic. `Pull Request 638`_\n* Fix bug where tool IDs needs to be lowercase for the shed (thanks to\n `@bgruening`_).\n `Pull Request 649`_\n* Update seqtk version targetted by intro docs. e343b67_\n* Various other Conda usability improvements. `Pull Request 634`_\n\n---------------------\n0.38.1 (2017-02-06)\n---------------------\n\n* Fix bug with ``shed_lint --urls`` introduced in 0.38.0.\n 84ebc1f_\n\n---------------------\n0.38.0 (2017-02-06)\n---------------------\n\n* Trim down the default amount of logging during testing.\n `Pull Request 629`_, `Issue 515`_\n* Improved log messages during shed operations. 08c067c_\n* Update tool XSD against latest Galaxy.\n fca4183_, 03c9658_\n* Fix bug where ``shed_lint --tools`` for a suite lints the same tools multiple\n times.\n `Issue 564`_, `Pull Request 628`_\n\n---------------------\n0.37.0 (2017-01-25)\n---------------------\n\n* Update to the latest `galaxy-lib`_ release. This means new installs start with\n Miniconda 3 instead of Minicoda 2 and at a newer version. This fixes many\n Conda_ related bugs.\n* Change defaults so that Conda automatically initializes and performs tool installs\n by default from within the spawned Galaxy server. The trio of flags\n ``--conda_dependency_resolution``, ``--conda_auto_install``, and ``--conda_auto_init``\n are effectively enabled by default now. 4595953_\n* Use the Galaxy cached dependency manager by default (thanks to `@abretaud`_).\n `Pull Request 612`_\n* Test Conda dependency resolution for more versions of Galaxy including the forthcoming\n release of 17.01.\n* Update to the latest Galaxy tool XSD for various tool linting fixes. 32acd68_\n* Fix pip ignores for ``bioconda_scripts`` (thanks to `@nturaga`_)\n `Pull Request 614`_\n\n---------------------\n0.36.1 (2016-12-12)\n---------------------\n\n* Fix move error when using ``project_init``.\n `Issue 388`_, `Pull Request 610`_\n* Improved integration testing for ``test`` command. `Pull Request 609`_\n* Update CWL links to v1.0 (thanks to `@mr-c`_).\n `Pull Request 608`_\n\n---------------------\n0.36.0 (2016-12-11)\n---------------------\n\n* Bring in latest tool XSD file from Galaxy (thanks to `@peterjc`_).\n `Pull Request 605`_\n* PEP8 fixes for various linting problems\n (thanks to `@peterjc`_).\n `Pull Request 606`_\n* Update tool syntax URL to new URL (thanks to `@mvdbeek`_).\n `Pull Request 602`_\n\n---------------------\n0.35.0 (2016-11-14)\n---------------------\n\n* Native support for building bioconductor tools and recipes\n (thanks to `@nturaga`_). `Pull Request 570`_\n* Fixes for running Galaxy via docker-galaxy-stable (thanks to\n `@bgruening`_). 50d3c4a_\n* Import order linting fixes (thanks to `@bgruening`_).\n\n---------------------\n0.34.1 (2016-10-12)\n---------------------\n\n* Mimic web browser to validate user help URLs fixing `Issue 578`_\n (thanks to `@peterjc`_). `Pull Request 591`_\n* Fix for Bioconda recipes depending on ``conda-forge`` (thanks to `@nsoranzo`_).\n `Pull Request 590`_\n\n\n---------------------\n0.34.0 (2016-10-05)\n---------------------\n\n* Implement ``mull`` command to build containers for tools based on Conda_\n recipes matching requirement definitions. 08cef54_\n* Implement ``--mulled_containers`` flag on ``test``, ``serve``, and ``run``\n commands to run tools in \"mulled\" containers. Galaxy will first search\n locally cache containers (such as ones built with ``mull``), then search\n the mulled namespace of `quay.io`_, and finally build one on-demand if\n needed using `galaxy-lib`_ and Involucro_ developed by `@thriqon`_.\n* Implement ``--conda_requirements`` flag on ``lint`` command to ensure requirements\n can be resolved in best practice channels. 9da8387_\n* Allow ``conda_install`` command over multiple tool paths. 2e4e5fc_\n* Update pip_ as part of setting virtual environment in ``Makefile`` target.\n 19b2ee9_\n* Add script to auto-update Bioconda_ recipe for Planemo and open a pull request.\n f0da66f_\n\n---------------------\n0.33.2 (2016-09-28)\n---------------------\n\n* Fix HISTORY.rst link problem that prevented correct display of content on PyPI_.\n\n---------------------\n0.33.1 (2016-09-28)\n---------------------\n\n* Fix ``lint --urls`` false positives by being more restrictive with what is considered a URL\n (fixed by `@erasche`_ after detailed report from `@peterjc`_).\n `Issue 573`_, `Pull Request 579`_\n\n---------------------\n0.33.0 (2016-09-23)\n---------------------\n\n* Enable XSD validation of tools by default (restore old behavior with\n ``planemo lint --no_xsd``). 1ef05d2_\n* Implement a ``conda_lint`` command to lint Conda_ recipes based\n on `anaconda-verify`_. 6a6f164_\n* Implement ``clone`` and ``pull_request`` commands to ease PRs\n (with documentation fixes from `@martenson`_).\n e925ba1_, ea5324f_\n* Update `galaxy.xsd`_ to allow version_command's to have an interpreter\n attribute. 7cca2e4_\n* Apply improvement from `@nsoranzo`_ for Planemo's use of\n `git diff `__.\n 6f91719_\n* Pull in downstream refactoring of ``tool_init`` code from `@nturaga`_'s\n Bioconductor_ work. ccdd2d5_\n* Update to latest `Tool Factory`_ code from `tools-iuc`_. ca88b0c_\n* Small code cleanups. b6d8294_, d6da3a8_\n* Fixup docs in ``planemo.xml.validation``.\n* Allow skipping newly required lxml_ dependency in `setup.py`_. 34538de_\n\n---------------------\n0.32.0 (2016-09-16)\n---------------------\n\n* Enhance ``planemo lint --xsd`` to use a fairly complete and newly official XSD\n definition. `Pull Request 566`_\n* Migrate and update documentation related to tool XML macros and handling\n multiple outputs from the Galaxy wiki (with help from `@bgruening`_, `@mvdbeek`_,\n and `@nsoranzo`_). `Pull Request 559`_\n* Documentation fixes (thanks to `@ramezrawas`_). `Pull Request 561`_\n* Do not fail URL linting in case of too many requests (thanks to `@nsoranzo`_).\n `Pull Request 565`_\n\n---------------------\n0.31.0 (2016-09-06)\n---------------------\n\n* Implement new commands to ``ci_find_repos`` and ``ci_find_tools`` to ease\n CI scripting.\n `Pull Request 555`_\n\n---------------------\n0.30.2 (2016-09-01)\n---------------------\n\n* Fix another problem with Conda_ prefix handling when using\n ``--conda_dependency_resolution``. f7b6c7e_\n\n---------------------\n0.30.1 (2016-09-01)\n---------------------\n\n* Fix a problem with Conda_ prefix handling when using\n ``--conda_dependency_resolution``. f7b6c7e_\n* Fix for quote problem in ``update_planemo_recipe.bash``. 6c03de8_\n* Fix to restore linting of ``tests/`` directory and fix import order throughout\n module. ef4b9f4_\n\n---------------------\n0.30.0 (2016-09-01)\n---------------------\n\n* Update to the latest `galaxy-lib`_ release and change Conda_ semantics to match\n recent updates to Galaxy. For the most robust Conda_ usage - use planemo 0.30+\n with Galaxy 16.07 or master.\n 07d94bd_\n* Implement the ``--conda_auto_init`` flag for ``conda_install``. ca19910_\n* Allow the environment variable ``PLANEMO_CONDA_PREFIX`` to set a default\n for ``--conda_prefix``.\n 24008ab_\n* Fixup documentation regarding installs and Conda_. ce44e87_\n* Fix and lint Python module import order throughout project.\n `Pull Request 550`_\n* Use ``cp`` rather than symlink to ``$DOWNLOAD_CACHE`` in the\n ``dependency_script`` command (thanks to `@peterjc`_). c2204b3_\n* Fixes for the Homebrew recipe updater. c262b6d_\n\n---------------------\n0.29.1 (2016-08-19)\n---------------------\n\n* Improved handling of Python 2.7 specific dependencies.\n\n---------------------\n0.29.0 (2016-08-19)\n---------------------\n\n* Look for sha256sum checksums during shed_lint (thanks to `@peterjc`_).\n `Pull Request 539`_\n* An assortment fixes and enhancements to the ``dependency_script`` command\n (thanks to `@peterjc`_). `Pull Request 541`_, `Pull Request 545`_\n* Fix shed_build to respect exclude: in .shed.yml (thanks to `@nsoranzo`_).\n `Pull Request 540`_\n* Fix linting of tool URLs (thanks to `@nsoranzo`_). `Pull Request 546`_\n\n---------------------\n0.28.0 (2016-08-17)\n---------------------\n\n* Fixes for bioblend_ v0.8.0 (thanks to `@nsoranzo`_). 9fdf490_\n* Enable shed repo type update (thanks to `@nsoranzo`_). 3ceaa40_\n* Create suite repositories with repository_suite_definition type by default\n (thanks to `@nsoranzo`_).\n 057f4f0_\n* Include ``shed_lint`` in script run by ``travis_init`` (thanks to `@peterjc`_).\n `Pull Request 528`_\n* Minor polish to the ``travis_init`` command (thanks to `@peterjc`_).\n `Pull Request 512`_\n* Update pip_ and setuptools on TravisCI; fix travis_init (thanks to `@peterjc`_).\n `Pull Request 521`_\n* Shorten command one line descriptions for main help (thanks to `@peterjc`_).\n `Pull Request 510`_\n* Use ``planemo test --no_cache_galaxy`` under TravisCI (thanks to `@peterjc`_).\n `Pull Request 513`_\n* Improve and fix docs ahead of GCC 2016 (thanks to `@martenson`_).\n `Pull Request 498`_, 725b232_\n* Add description of ``expect_num_outputs`` to planemo FAQ. a066afb_\n* Revise planemo tools docs to be more explicit about collection identifiers.\n a811e65_\n* Add more docs on existing dynamic tool output features. `Pull Request 526`_\n* Fix serve command doc (thanks to `@nsoranzo`_). 8c088c6_\n* Fix `make lint-readme` (RST link errors) (thanks to `@peterjc`_).\n `Pull Request 525`_\n* Add union bedgraph example to project templates (for GCC demo example).\n d53bcd6_\n* Add Flow Cytometry Analysis, Data Export, and Constructive Solid Geometry as\n shed categories (thanks to `@bgruening`_, `@gregvonkuster`_, and `@nsoranzo`_).\n e890ab5_, 08bb354_, e2398fb_\n* Remove duplicated attribute in docs/writing/bwa-mem_v5.xml (thanks to\n Paul Stewart `@pstew`_).\n `Pull Request 507`_\n\n---------------------\n0.27.0 (2016-06-22)\n---------------------\n\n* Use ephemeris to handle syncing shed tools for workflow actions.\n 1c6cfbb_\n* More planemo testing enhancements for testing artifacts that aren't\n Galaxy tools. `Pull Request 491`_\n* Implement ``docker_galaxy`` engine type. eb039c0_, `Issue 15`_\n* Enhance profiles to be Dockerized Galaxy-aware. `Pull Request 488`_\n* Add linter for DOI type citation - thanks to `@mvdbeek`_.\n `Pull Request 484`_\n\n---------------------\n0.26.0 (2016-05-20)\n---------------------\n\n* Implement ``Engine`` and ``Runnable`` abstractions - Planemo now has\n beta support for testing Galaxy workflows and CWL_ tools with Galaxy and\n any CWL_ artifact with cwltool_.\n `Pull Request 454`_, 7be1bf5_\n* Fix missing command_line in test output json. e38c436_\n* More explicit Galaxy ``job_conf.xml`` handling, fixes bugs caused by\n ``galaxy_root`` having existing and incompatible ``job_conf.xml`` files\n and makes it possible to specify defaults with fixed server name. c4dfd55_\n* Introduce profile commands (``profile_create``, ``profile_delete``, and\n ``profile_list``) and profile improvements (automatic postgres database\n creation support). `Pull Request 480`_, a87899b_\n* Rework Galaxy test reporting to use structured data instead of XUnit\n data. 4d29bf1_\n* Refactor Galaxy configuration toward support for running Galaxy in\n docker-galaxy-stable. `Pull Request 479`_\n\n---------------------\n0.25.1 (2016-05-11)\n---------------------\n\n* Tweak dependencies to try to fix cwltool_ related issues - such\n as `Issue 475`_.\n\n---------------------\n0.25.0 (2016-05-11)\n---------------------\n\n* Implement Galaxy \"profiles\" - the ability to configure\n perisistent, named environments for ``serve`` and ``test``.\n 5d08b67_\n* Greatly improved ``serve`` command - make ``test-data``\n available as an FTP folder, (on 16.07) automatically log\n in an admin user, and many more options (such as those\n required for \"profiles\" and a ``--daemon`` mode).\n* Two fixes to ensure more consistent, dependable ``test`` output.\n `Pull Request 472`_, f3c6917_\n* Add code and documentation for linting (``lint``) and\n building (``tool_init``) CWL_ tools. a4e6958_, b0b867e_,\n 4cd571c_\n* If needed for Conda_ workaround, shorten ``config_directory``\n path (thanks to `@mvdbeek`_). efc5f30_\n* Fix ``--no_cache_galaxy`` option (thanks to Gildas Le\n Corguill\u00e9). d8f2038_\n* Target draft 3 of CWL_ instead of draft 2. 775bf49_\n* Fix ``cwltool`` dependency version - upstream changes broke\n compatibility. `65b999d`_\n* Add documentation section and slides about recent Galaxy\n tool framework changes (with fix from `@remimarenco`_). 069e7ba_\n* Add IUC standards to Planemo docs. 2ae2b49_\n* Improve collection-related contents in documentation\n (thanks in part to `@martenson`_).\n fea51fc_, 13a5ae7_\n* Add documentation on ``GALAXY_SLOTS`` and running planemo\n on a cluster. 45135ff_, e0acf91_\n* Revise command-line handling framework for consistency and\n extension - allow extra options to be configured as\n defaults ``~/.planemo.yml`` including ``--job_config_file``\n and Conda_ configuration options. e769118_, 26e378e_\n* Fix ``tool_init`` commans options typos (thanks to\n Nitesh Turaga). 826d371_\n* Refactor galaxy-related modules into submodules of a new\n ``planemo.galaxy`` package. 8e96864_\n* Fix error message typo (thanks to `@blankenberg`_). b1c8f1d_\n* Update documentation for recent command additions. 3f4ab44_\n* Rename option ``--galaxy_sqlite_database`` option to\n ``--galaxy_database_seed`` and fix it so it actually works.\n f7554d1_\n* Add ``--extra_tools`` option to ``serve`` command. 02a08a0_\n* Update project testing to include linting documentation\n (``docs/``), Python import order, and docstrings.\n a13a120_, 6e1e726_, 95d5cba_\n\n\n---------------------\n0.24.2 (2016-04-25)\n---------------------\n\n* Revert \"check ``.shed.yml`` owner against credentials during shed\n creation\", test was incorrect and preventing uploads.\n `Pull Request 425`_, `Issue 246`_\n\n---------------------\n0.24.1 (2016-04-08)\n---------------------\n\n* Fix test summary report. `Pull Request 429`_\n* Improve error reporting when running ``shed_test``. ce8e1be_\n* Improved code comments and tests for shed related functionality.\n 89674cb_\n* Rev `galaxy-lib`_ dependency to 16.4.1 to fix wget usage in\n newer versions of wget. d76b489_\n\n---------------------\n0.24.0 (2016-03-29)\n---------------------\n\n* Drop support for Python 2.6. 93b7bda_\n* A variety of fixes for ``shed_update``.\n `Pull Request 428`_, `Issue 416`_\n* Fix reporting of metadata updates for invalid shed updates.\n `Pull Request 426`_, `Issue 420`_\n* Check ``.shed.yml`` owner against credentials during shed creation.\n `Pull Request 425`_, `Issue 246`_\n* Fix logic error if there is a problem with ``shed_create``. 358a42c_\n* Tool documentation improvements. 0298510_, a58a3b8_\n\n---------------------\n0.23.0 (2016-02-15)\n---------------------\n\n* Fix duplicated attributes with Conda_ resolver (thanks\n to Bj\u00f6rn Gr\u00fcning). `Pull Request 403`_\n* Upgrade to latest version of `galaxy-lib`_ for more linting.\n* Attempt to better handle conditional dependency on cwltool.\n\n---------------------\n0.22.2 (2016-01-14)\n---------------------\n\n* Fixed bug targetting forthcoming release of Galaxy 16.01.\n\n---------------------\n0.22.1 (2016-01-14)\n---------------------\n\n* Fixed problem with PyPI_ build artifacts due to submodule's not\n being initialized during previous release.\n\n---------------------\n0.22.0 (2016-01-13)\n---------------------\n\n* Add ``--skip_venv`` to support running Galaxy 16.01 inside of\n conda environments. 9f3957d_\n* Implement conda support. f99f6c1_, ad3b2f0_, 5e0b6d1_\n* Update LICENSE for Planemo to match Galaxy. 15d33c7_\n* Depend on new `galaxy-lib`_ on PyPI_ instead of previous hacks....\n `Pull Request 394`_\n* Fix egg caching against master/15.10. 6d0f502_\n* Fix bug causing shed publishing of ``.svn`` directories.\n `Issue 391`_\n* Bug fixes for Conda_ support thanks to `@bgruening`_. 63e456c_\n* Fix document issues thanks to `@einon`_.\n `Pull Request 390`_\n* Improve client for shed publishing to support newer shed backend\n being developed by `@erasche`_. `Pull Request 394`_\n* Tool Shed ``repo_id`` change, `@erasche`_. `Pull Request 398`_\n* Various other small changes to testing, project structure, and\n Python 3 support.\n\n---------------------\n0.21.1 (2015-11-29)\n---------------------\n\n* Fix serious regression to ``test`` command. 94097c7_\n* Small fixes to release process. 4e1377c_, 94645ed_\n\n---------------------\n0.21.0 (2015-11-29)\n---------------------\n\n* If ``virtualenv`` not on ``PATH``, have Planemo create one for Galaxy.\n 5b97f2e_\n* Add documentation section on testing tools installed in an existing\n Galaxy instance. 1927168_\n* When creating a virtualenv for Galaxy, prefer Python 2.7.\n e0577e7_\n* Documentation fixes and improvements thanks to `@martenson`_.\n 0f8cb10_, 01584c5_, b757791_\n* Specify a minimum ``six`` version requirement. 1c7ee5b_\n* Add script to test a planemo as a wheel. 6514ff5_, `Issue 184`_\n* Fix empty macro loading. `Issue 362`_\n* Fix an issue when you run ``shed_diff --shed_target local`` thanks\n to Gwendoline Andres and Gildas Le Corguill\u00e9 at ABiMS Roscoff.\n `Pull Request 375`_\n* Fix ``shed_diff`` printing to stdout if ``-o`` isn't specified.\n f3394e7_\n* Small ``shed_diff`` improvements to XML diffing and XUnit reporting.\n af7448c_, 83e227a_\n* More logging of ``shed_diff`` results if ``--verbose`` flagged.\n 9427b47_\n* Add ``test_report`` command for rebuilding reports from structured JSON.\n 99ee51a_\n* Fix option bug with Click 6.0 thanks to `@bgruening`_. 2a7c792_\n* Improved error messages for test commands. fdce74c_\n* Various fixes for Python 3. 2f66fc3_, 7572e99_, 8eda729_, 764ce01_\n* Use newer travis container infrastructure for testing. 6d81a94_\n* Test case fixes. 98fdc8c_, 0e4f70a_\n\n---------------------\n0.20.0 (2015-11-11)\n---------------------\n\n* More complete I/O capturing for XUnit. 6409449_\n* Check for select parameter without options when linting tools.\n `Issue 373`_\n* Add ``--cwl_engine`` argument to ``cwl_run`` command. dd94ddc_\n* Fixes for select parameter linting. 8b31850_\n* Fix to demultiplexing repositories after tool uploads. `Issue 361`_\n* Fix to update planemo for Galaxy wheels. 25ef0d5_\n* Various fixes for Python 2.6 and Python 3.\n c1713d2_, 916f610_, c444855_\n\n---------------------\n0.19.0 (2015-11-03)\n---------------------\n\n* Initial implementation of ``cwl_run`` command that runs a\n CWL tool and job file through Galaxy. 49c5c1e_\n* Add ``--cwl`` flag to ``serve`` to experimentally serve CWL tools\n in Galaxy.\n `Pull Request 339`_\n* Implement highly experimental ``cwl_script`` command to convert\n a CWL job to a bash script. 508dce7_\n* Add name to all XUnit reports (thanks to `@erasche`_).\n `Pull Request 343`_\n* Capture stdout and stderr for ``shed_diff`` and ``shed_update``\n XUnit reports. `Pull Request 344`_\n* More tool linting (conditionals) thanks to `@erasche`_.\n `Pull Request 350`_\n* UTF-8 fixes when handling XUnit reports. `Pull Request 345`_\n* Add `Epigenetics` as Tool Shed category. `Pull Request 351`_\n* Merge changes to common modules shared between Galaxy, Planemo, and Pulsar (thanks to `@natefoo`_).\n `Pull Request 356`_\n* Add ``--cite_url`` to ``tool_init``. fdb1b51_\n* ``tool_init`` bug fix. f854138_\n* Fix `setup.py`_ for cwltool and bioblend_ changes. 1a157d4_\n* Add option to specify template sqlite database locally. c23569f_\n* Add example IPython notebooks to docs. c8640b6_\n\n---------------------\n0.18.1 (2015-10-22)\n---------------------\n\n* Fix issue with test reporting not being populated. 19900a6_\n\n---------------------\n0.18.0 (2015-10-20)\n---------------------\n\n* Improvements to ``docker_shell`` usability (thanks to `@kellrott`_).\n `Pull Request 334`_\n* Add docker pull attempt when missing Dockerfile (thanks to `@kellrott`_).\n `Pull Request 333`_\n* Fix bug inferring which files are tool files (thanks to `@erasche`_).\n `Pull Request 335`_, `Issue 313`_\n* Initial work toward automating brew recipe update. 4d6f7d9_, `Issue 329`_\n\n---------------------\n0.17.0 (2015-10-19)\n---------------------\n\n* Implement basic XUnit report option for ``shed_update`` (thanks to `@martenson`_).\n `Pull Request 322`_\n* Fix issues with producing test outputs. 572e754_\n* Xunit reporting improvements - refactoring, times, diff output (thanks to `@erasche`_).\n `Pull Request 330`_\n* Implement project governance policy and update developer code of conduct to\n match that of the Galaxy project. `Pull Request 316`_\n* Update filters for account for new ``.txt`` and ``.md`` test outputs\n (thanks to `@erasche`_). `Pull Request 327`_\n* Add verbose logging to galaxy test output handling problems. 5d7db92_\n* Flake8 fixes (thanks to `@martenson`_). 949a36d_\n* Remove uses of deprecated ``mktemp`` Python standard library function\n (thanks to `@erasche`_). `Pull Request 330`_\n\n---------------------\n0.16.0 (2015-10-07)\n---------------------\n\n* Adding new command ``dependency_script`` to convert Tool Shed dependencies\n into shell scripts - thanks to `@peterjc`_.\n `Pull Request 310`_, f798c7e_, `Issue 303`_\n* Implement profiles in sheds section of the ``~/.planemo.yml``.\n `Pull Request 314`_\n\n---------------------\n0.15.0 (2015-10-01)\n---------------------\n\n* Template framework for reporting including new markdown and plain\n text reporting options for testing - thanks to `@erasche`_.\n `Pull Request 304`_\n* XUnit style reporting for ``shed_diff`` command - thanks to\n `@erasche`_. `Pull Request 305`_\n* Add new ``shed_build`` command for building repository tarballs -\n thanks to `@kellrott`_. `Pull Request 297`_\n* Fix exit code handling for ``lint`` commands - thanks to `@mvdbeek`_.\n `Pull Request 292`_\n* Improved documentation for ``serve`` command - thanks to `@lparsons`_.\n `Pull Request 312`_\n* Tiny backward compatible Python 3 tweaks for `Tool Factory`_ - thanks\n to `@peterjc`_. dad2d9d_\n* Fixed detection of virtual environment in ``Makefile`` - thanks to\n `@lparsons`_. `Pull Request 311`_\n* Updates to Galaxy XSD - thanks to `@mr-c`_. `Pull Request 309`_\n* Allow reading shed key option from an environment variable.\n `Pull Request 307`_\n* Allow specifying host to serve Galaxy using ``-host`` - thanks in\n part to `@chambm`_. `Pull Request 301`_\n* Allow specifying defaults for ``-host`` and ``--port`` in\n ``~/.planemo.yml``. `Pull Request 301`_\n* Improve ``~/.planemo.yml`` sample comments - thanks to `@martenson`_.\n `Pull Request 287`_\n* Update tool shed categories - thanks to `@bgruening`_. `Pull Request 285`_\n* Improved output readibility for ``diff`` command - thanks to `@martenson`_. `Pull Request 284`_\n\n---------------------\n0.14.0 (2015-08-06)\n---------------------\n\n* Allow ``-t`` as shorthand for ``--shed_target`` (thanks to Peter Cock).\n `Pull Request 278`_\n* Fix ``tool_init`` command to use ``from_work_dir`` only if file in command\n (thanks to bug report and initial fix outline by Gildas Le Corguill\u00e9).\n `Pull Request 277`_\n* Various documentation fixes (thanks in part to Peter Cock and Daniel\n Blankenberg). `Pull Request 256`_, `Pull Request 253`_, `Pull Request 254`_,\n `Pull Request 255`_, `Pull Request 251`_, `Issue 272`_\n\n---------------------\n0.13.2 (2015-07-06)\n---------------------\n\n* Fix project_init for missing files. cb5b906_\n* Various documentation improvements.\n\n---------------------\n0.13.1 (2015-07-01)\n---------------------\n\n* Fix for ``shed_init`` producing non-standard type hints. `Issue 243`_,\n f0610d7_\n* Fix tool linting for parameters that define an ``argument`` but not a\n ``name``. `Issue 245`_, aad1eed_\n* Many doc updates including a tutorial for developing tools in a test-driven\n fashion and instructions for using the planemo appliance through Kitematic\n (with Kitematic screenshots from E. Rasche).\n\n---------------------\n0.13.0 (2015-06-28)\n---------------------\n\n* If planemo cannot find a Galaxy root, it will now automatically fetch\n one (specifing ``--galaxy_install`` will still force a fetch).\n `Pull Request 235`_\n* `Docuementation `__\n has been updated to reflect new and vastly improved Docker and Vagrant\n virtual appliances are now available, as well as a new VirtualBox OVA\n variant.\n* Update linting for new tool XML features (including ``detect_errors``\n and output collections). `Issue 233`_, 334f2d4_\n* Fix ``shed_test`` help text. `Issue 223`_\n* Fix code typo (thanks to Nicola Soranzo). `Pull Request 230`_\n* Improvements to algorithm used to guess if an XML file is a tool XML file.\n `Issue 231`_\n* Fix configuration file handling bug. `Issue 240`_\n\n---------------------\n0.12.2 (2015-05-23)\n---------------------\n\n* Fix ``shed_test`` and ``shed_serve`` for test and local tool sheds.\n f3cafaa_\n\n---------------------\n0.12.1 (2015-05-21)\n---------------------\n\n* Fix to ensure the tab completion script is in the Python source tarball\n (required for setting up tab-completion for Homebrew). 6b4e7a6_\n\n---------------------\n0.12.0 (2015-05-21)\n---------------------\n\n* Implement a ``--failed`` flag for the ``test`` command to rerun\n previously faied tests. `Pull Request 210`_\n* Implement ``shed_update`` to upload contents and update repository\n metadata. `Pull Request 216`_\n* Implement ``shed_test`` and ``shed_serve`` commands to test and view\n published artifacts in the Tool Shed. `Pull Request 213`_, `Issue 176`_\n* Add shell tab-completion script. 37dcc07_\n* Many more commands allow specifing multiple tool and/or repository targets.\n `Issue 150`_\n* Add -m as alias for --message in planemo shed_upload (thanks to\n Peter Cock). `Pull Request 200`_\n* Add ``--ensure_metadata`` option to ``shed_lint`` to ensure ``.shed.yml``\n files contain many repository. `Pull Request 215`_\n* More developer documentation, additional ``make`` targets including ones\n for setting up git pre-commit hooks. cc8abb6_, `Issue 209`_\n* Small README improvement (thanks to Martin \u010cech) b53006d_\n* Fixes for shed operation error handling (thanks to Martin \u010cech).\n `Pull Request 203`_, `Pull Request 206`_\n* Fix for \"smart\" ``shed_diff`` not in the repository root directory\n (thanks to Peter Cock). `Pull Request 207`_, `Issue 205`_\n* Recursive ``shed_diff`` with directories not yet in Tool Shed.\n `Pull Request 208`_\n* Improve error handling and reporting for problematic ``--shed_target``\n values. `Issue 217`_\n* Fix typos in lint messages. `Issue 211`_\n\n\n---------------------\n0.11.1 (2015-05-12)\n---------------------\n\n* Fix default behavior for ``planemo lint`` to use current directory if\n explicit paths are not supplied. 1e3668a_\n\n---------------------\n0.11.0 (2015-05-12)\n---------------------\n\n* More compact syntax for defining multiple custom inclusions in ``.shed.yml``\n files - thanks to Peter Cock. `Issue 180`_, `Pull Request 185`_,\n `Pull Request 196`_\n* Prevent ambigous destinations when defining custom inclusions in\n ``.shed.yml``- thanks to Peter Cock. `Pull Request 186`_\n* ``lint`` now warns if tool ids contain whitespace. `Pull Request 190`_\n* Handle empty tar-balls gracefully on older Python versions - thanks\n to Peter Cock. `Pull Request 187`_\n* Tweak quoting in ``cp`` command - thanks to Peter Cock. 6bcf699_\n* Fix regression causing testing to no longer produce \"pretty\" test\n results under certain circumstances. `Issue 188`_\n* Fix for recursive ``shed_diff`` folder naming. `Issue 192`_\n* Fix output definitions to ``tool_init`` command. `Issue 189`_\n\n---------------------\n0.10.0 (2015-05-06)\n---------------------\n\n* Extend ``shed_lint`` to check for valid actions in tool_dependencies.xml\n files. 8117e03_\n* Extend ``shed_lint`` to check for required files based on repository type.\n `Issue 156`_\n* Ignore common editor backup files during ``shed_upload``. `Issue 179`_\n* Fix missing file when installing from source via PyPI_. `Issue 181`_\n* Fix ``lint`` to verify ``data`` inputs specify a ``format`` attribute.\n 8117e03_\n* Docstring fix thanks to `@peterjc`_. fe7ad46_\n\n\n---------------------\n0.9.0 (2015-05-03)\n---------------------\n\n* Add new logo to the README thanks to `@petrkadlec`_ from `puradesign.cz\n `__ and `@carlfeberhard`_ from the Galaxy Project.\n `Issue 108`_\n* Implement smarter ``shed_diff`` command - it now produces a meaningful\n exit codes and doesn't report differences if these correspond to attributes\n that will be automatically populated by the Tool Shed. `Issue 167`_\n* Use new smarter ``shed_diff`` code to implement a new ``--check_diff``\n option for ``shed_upload`` - to check for meaningful differences before\n updating repositories. `Issue 168`_\n* Record git commit hash during ``shed_upload`` if the ``.shed.yml`` is\n located in a git repository. `Issue 170`_\n* Allow ``shed_`` operations to operate on git URLs directly. `Issue 169`_\n* Fail if missing file inclusion statements encountered during ``.shed.yml``\n repository resolution - bug reported by `@peterjc`_. `Issue 158`_\n* Improved exception handling for tool shed operations including new\n ``--fail_fast`` command-line option. * `Issue 114`_, `Pull Request 173`_\n* Implement more validation when using the ``shed_init`` command. 1cd0e2d_\n* Add ``-r/--recursive`` option to ``shed_download`` and ``shed_diff``\n commands and allow these commands to work with ``.shed.yml`` files defining\n multipe repositories. 40a1f57_\n* Add ``--port`` option to the ``serve`` and ``tool_factory`` commands.\n 15804be_\n* Fix problem introduced with `setup.py`_ during the 0.9.0 development cycle\n - thanks to `@peterjc`_. `Pull Request 171`_\n* Fix clone bug introduced during 0.9.0 development cycle - thanks to\n `@bgruening`_. `Pull Request 175`_\n\n---------------------\n0.8.4 (2015-04-30)\n---------------------\n\n* Fix for Travis CI testing picking up invalid tests (reported by `@takadonet`_). `Issue 161`_\n* Fix tar ordering for consistency (always sort by name) - thanks to `@peterjc`_. `Pull Request 164`_, `Issue 159`_\n* Fix exception handling related to tool shed operations - thanks to `@peterjc`_. `Pull Request 155`_, b86fe1f_\n\n---------------------\n0.8.3 (2015-04-29)\n---------------------\n\n* Fix bug where ``shed_lint`` was not respecting the ``-r/--recursive`` flag.\n 9ff0d2d_\n* Fix bug where planemo was producing tar files incompatible with the Tool\n Shed for package and suite repositories. a2ee135_\n\n---------------------\n0.8.2 (2015-04-29)\n---------------------\n\n* Fix bug with ``config_init`` command thanks to `@bgruening`_. `Pull Request 151`_\n* Fix unnessecary ``lint`` warning about ``parallelism`` tag reported by\n `@peterjc`_. 9bf1eab_\n\n---------------------\n0.8.1 (2015-04-28)\n---------------------\n\n* Fixes for the source distribution to allow installation of 0.8.0 via Homebrew.\n\n---------------------\n0.8.0 (2015-04-27)\n---------------------\n\n* Implement the new ``shed_lint`` command that verifies various aspects of tool\n shed repositories - including XSD_ validation of ``repository_dependencies.xml``\n and ``tool_dependencies.xml`` files, best practices for README files, and the\n contents of ``.shed.yml`` files. This requires the lxml_ library to be available\n to Planemo or the application xmllint_ to be on its ``PATH``. `Pull Request 130`_\n `Issue 89`_ `Issue 91`_ 912df02_ d26929e_ 36ac6d8_\n* Option to enable experimental XSD_ based validation of tools when ``lint``\n is executed with the new ``--xsd`` flag. This validation occurs against the\n unofficial `Galaxy Tool XSD project `__\n maintained by `@JeanFred`_. This requires the lxml_ library to be\n available to Planemo or the application xmllint_ to be on its ``PATH``.\n `Pull Request 130`_ 912df02_\n* Allow skipping specific linters when using the ``lint`` command using the new\n ``--skip`` option. 26e3cdb_\n* Implement sophisticated options in ``.shed.yml`` to map a directory to many,\n custom Tool Shed repositories during shed operaitons such ``shed_upload``\n including automatically mapping tools to their own directories and automatically\n building suites repositories. `Pull Request 143`_\n* Make ``shed_upload`` more intelligent when building tar files so that package\n and suite repositories may have README files in source control and they will\n just be filtered out during upload. 53edd99_\n* Implement a new ``shed_init`` command that will help bootstrap ``.shed.yml``\n files in the specified directory. cc1a447_\n* Extend ``shed_init`` to automatically build a ``repository_rependencies.xml``\n file corresponding to a Galaxy workflow (``.ga`` file). `Issue 118`_ 988de1d_\n* In addition to a single file or directory, allow ``lint`` to be passed multiple\n files. 343902d_ `Issue 139`_\n* Add ``-r/--recursive`` option to ``shed_create`` and ``lint`` commands. 63cd431_\n 01f2af9_\n* Improved output formatting and option to write diffs to a file for the\n ``shed_diff`` command. 965511d_\n* Fix lint problem when using new Galaxy testing features such as expecting\n job failures and verifing job output. `Issue 138`_\n* Fix typo in ``test`` help thanks to first time contributor `@pvanheus`_.\n `Pull Request 129`_ 1982076_\n* Fix NPE on empty ``help`` element when linting tools. `Issue 124`_\n* Fix ``lint`` warnings when ``configfiles`` are defined in a tool. 1a85493_\n* Fix for empty ``.shed.yml`` files. b7d9e96_\n* Fix the ``test`` command for newer versions of nose_. 33294d2_\n* Update help content and documentation to be clear ``normalize`` should not\n be used to update the contents of tool files at this time. 08de8de_\n* Warn on unknown ``command`` attributes when linting tools (anything but\n ``interpreter``). 4f61025_\n* Various design, documentation (including new documentation on Tool Shed\n `publishing `__),\n and testing related improvements (test coverage has risen from 65% to over\n 80% during this release cycle).\n\n---------------------\n0.7.0 (2015-04-13)\n---------------------\n\n* Implement `shed_create` command to create Tool Shed repositories from\n ``.shed.yml`` files (thanks to E. Rasche). `Pull Request 101`_\n* Allow automatic creation of missing repositories during ``shed_upload``\n with the new ``--force_repository_creation`` flag (thanks to E. Rasche).\n `Pull Request 102`_\n* Allow specifying files to exclude in ``.shed.yml`` when creating tar files\n for ``shed_upload`` (thanks to Bj\u00f6rn Gr\u00fcning). `Pull Request 99`_\n* Resolve symbolic links when building Tool Shed tar files with\n ``shed_upload`` (thanks to Dave Bouvier). `Pull Request 104`_\n* Add a `Contributor Code of Conduct\n `__.\n `Pull Request 113`_\n* Omit ``tool_test_output.json`` from Tool Shed tar file created with\n ``shed_upload`` (thanks to Dave Bouvier). `Pull Request 111`_\n* Update required version of bioblend_ to ``0.5.3``. Fixed `Issue 88`_.\n* Initial work on implementing tests cases for Tool Shed functionality.\n 182fe57_\n* Fix incorrect link in HTML test report (thanks to Martin \u010cech). 4c71299_\n* Download Galaxy from the new, official Github repository. 7c69bf6_\n* Update travis_test to install stable planemo from PyPI_. 39fedd2_\n* Enable caching on ``--install_galaxy`` by default (disable with\n ``--no_cache_galaxy``). d755fe7_\n\n---------------------\n0.6.0 (2015-03-16)\n---------------------\n\n* Many enhancements to the tool building documentation - descriptions of macros, collections, simple and conditional parameters, etc...\n* Fix ``tool_init`` to quote file names (thanks to Peter Cock). `Pull Request 98`_.\n* Allow ignoring file patterns in ``.shed.yml`` (thanks to Bj\u00f6rn Gr\u00fcning). `Pull Request 99`_\n* Add ``--macros`` flag to ``tool_init`` command to generate a macro file as part of tool generation. ec6e30f_\n* Add linting of tag order for tool XML files. 4823c5e_\n* Add linting of ``stdio`` tags in tool XML files. 8207026_\n* More tests, much higher test coverage. 0bd4ff0_\n\n---------------------\n0.5.0 (2015-02-22)\n---------------------\n\n* Implement ``--version`` option. `Issue 78`_\n* Implement ``--no_cleanup`` option for ``test`` and ``serve`` commands to\n persist temp files. 2e41e0a_\n* Fix bug that left temp files undeleted. `Issue 80`_\n* More improvements to release process. fba3874_\n\n---------------------\n0.4.2 (2015-02-21)\n---------------------\n\n* Fix `setup.py`_ for installing non-Python data from PyPI_ (required newer\n for ``tool_factory`` command and reStructuredText linting). Thanks to\n Damion Dooley for the bug report. `Issue 83`_\n\n---------------------\n0.4.1 (2015-02-16)\n---------------------\n\n* Fix README.rst so it renders properly on PyPI_.\n\n---------------------\n0.4.0 (2015-02-16)\n---------------------\n\n* Implement ``tool_init`` command for bootstrapping creation of new\n tools (with `tutorial `_.) 78f8274_\n* Implement ``normalize`` command for reorganizing tool XML and macro\n debugging. e8c1d45_\n* Implement ``tool_factory`` command to spin up Galaxy pre-configured the\n `Tool Factory`_. 9e746b4_\n* Added basic linting of ``command`` blocks. b8d90ab_\n* Improved linting of ``help`` blocks, including verifying valid\n `reStructuredText`. 411a8da_\n* Fix bug related to ``serve`` command not killing Galaxy properly when complete. 53a6766_\n* Have ``serve`` command display tools at the top level instead of in shallow sections. badc25f_\n* Add additional dependencies to ``setup.py`` more functionality works out\n of the box. 85b9614_\n* Fix terrible error message related to bioblend_ being unavailable.\n `Issue 70`_\n* Various smaller documentation and project structure improvements.\n\n---------------------\n0.3.1 (2015-02-15)\n---------------------\n\n* Fixes to get PyPI_ workflow working properly.\n\n---------------------\n0.3.0 (2015-02-13)\n---------------------\n\n* Add option (``-r``) to the ``shed_upload`` command to recursively upload\n subdirectories (thanks to E. Rasche). `Pull Request 68`_\n* Fix diff formatting in test reports (thanks to E. Rasche).\n `Pull Request 63`_\n* Grab updated test database to speed up testing (thanks to approach from\n E. Rasche and Dannon Baker). `Issue 61`_, dff4f33_\n* Fix test data command-line argument name (was ``test-data`` now it is\n ``test_data``). 834bfb2_\n* Use ``tool_data_table_conf.xml.sample`` file if\n ``tool_data_table_conf.xml.test`` is unavailable. Should allow some\n new tools to be tested without modifying Galaxy's global\n ``tool_data_table_conf.xml`` file. ac4f828_\n\n---------------------\n0.2.0 (2015-01-13)\n---------------------\n\n* Improvements to way Planemo loads its own copy of Galaxy modules to prevent\n various conflicts when launching Galaxy from Planemo. `Pull Request 56`_\n* Allow setting various test output options in ``~/.planemo.yml`` and disabling\n JSON output. 21bb463_\n* More experimental Brew and Tool Shed options that should not be considered\n part of Planemo's stable API. See bit.ly/gxbrew1 for more details.\n* Fix ``project_init`` for BSD tar (thanks to Nitesh Turaga for the bug\n report.) a4110a8_\n* Documentation fixes for tool linting command (thanks to Nicola Soranzo).\n `Pull Request 51`_\n\n---------------------\n0.1.0 (2014-12-16)\n---------------------\n\n* Moved repository URL to https://github.com/galaxyproject/planemo.\n* Support for publishing to the Tool Shed. `Pull Request 6`_\n* Support for producing diffs (``shed_diff``) between local repositories and\n the Tool Shed (based on scripts by Peter Cock). `Pull Request 33`_\n* Use tool's local test data when available - add option for configuring\n ``test-data`` target. `Pull Request 1`_\n* Support for testing tool features dependent on cached data. 44de95c_\n* Support for generating XUnit tool test reports. 82e8b1f_\n* Prettier HTML reports for tool tests. 05cc9f4_\n* Implement ``share_test`` command for embedding test result links in pull\n requests. `Pull Request 40`_\n* Fix for properly resolving links during Tool Shed publishing (thanks to Dave\n Bouvier). `Pull Request 29`_\n* Fix for citation linter (thanks to Michael Crusoe for the bug report). af39061_\n* Fix tool scanning for tool files with fewer than 10 lines (thanks to Dan\n Blankenberg). a2c13e4_\n* Automate more of Travis CI testing so the scripts added to tool repository\n can be smaller. 20a8680_\n* Documentation fixes for Travis CI (thanks to Peter Cock). `Pull Request 22`_,\n `Pull Request 23`_\n* Various documentation fixes (thanks to Martin \u010cech). 36f7cb1_, b9232e5_\n* Various smaller fixes for Docker support, tool linting, and documentation.\n\n---------------------\n0.0.1 (2014-10-04)\n---------------------\n\n* Initial work on the project - commands for testing, linting, serving Galaxy\n tools - and more experimental features involving Docker and Homebrew. 7d07782_\n\n.. github_links\n.. _1ab8530: https://github.com/galaxyproject/planemo/commit/1ab8530\n.. _Pull Request 966: https://github.com/galaxyproject/planemo/pull/966\n.. _Pull Request 964: https://github.com/galaxyproject/planemo/pull/964\n.. _Pull Request 963: https://github.com/galaxyproject/planemo/pull/963\n.. _Pull Request 959: https://github.com/galaxyproject/planemo/pull/959\n.. _Pull Request 958: https://github.com/galaxyproject/planemo/pull/958\n.. _Pull Request 950: https://github.com/galaxyproject/planemo/pull/950\n.. _Pull Request 944: https://github.com/galaxyproject/planemo/pull/944\n.. _Pull Request 926: https://github.com/galaxyproject/planemo/pull/926\n.. _Pull Request 937: https://github.com/galaxyproject/planemo/pull/937\n.. _Pull Request 938: https://github.com/galaxyproject/planemo/pull/938\n.. _Pull Request 943: https://github.com/galaxyproject/planemo/pull/943\n.. _Pull Request 940: https://github.com/galaxyproject/planemo/pull/940\n.. _Pull Request 937: https://github.com/galaxyproject/planemo/pull/937\n.. _Pull Request 935: https://github.com/galaxyproject/planemo/pull/935\n.. _Pull Request 931: https://github.com/galaxyproject/planemo/pull/931\n.. _Pull Request 930: https://github.com/galaxyproject/planemo/pull/930\n.. _Pull Request 913: https://github.com/galaxyproject/planemo/pull/913\n.. _Pull Request 917: https://github.com/galaxyproject/planemo/pull/917\n.. _Pull Request 921: https://github.com/galaxyproject/planemo/pull/921\n.. _Pull Request 918: https://github.com/galaxyproject/planemo/pull/918\n.. _Pull Request 924: https://github.com/galaxyproject/planemo/pull/924\n.. _Pull Request 925: https://github.com/galaxyproject/planemo/pull/925\n.. _Pull Request 912: https://github.com/galaxyproject/planemo/pull/912\n.. _Pull Request 915: https://github.com/galaxyproject/planemo/pull/915\n.. _Pull Request 914: https://github.com/galaxyproject/planemo/pull/914\n.. _07dc6e0: https://github.com/galaxyproject/planemo/commit/07dc6e0\n.. _Pull Request 910: https://github.com/galaxyproject/planemo/pull/910\n.. _Pull Request 909: https://github.com/galaxyproject/planemo/pull/909\n.. _Pull Request 908: https://github.com/galaxyproject/planemo/pull/908\n.. _Pull Request 907: https://github.com/galaxyproject/planemo/pull/907\n.. _Pull Request 906: https://github.com/galaxyproject/planemo/pull/906\n.. _Pull Request 902: https://github.com/galaxyproject/planemo/pull/902\n.. _Pull Request 895: https://github.com/galaxyproject/planemo/pull/895\n.. _Issue 845: https://github.com/galaxyproject/planemo/issues/845\n.. _Issue 898: https://github.com/galaxyproject/planemo/issues/898\n.. _Pull Request 899: https://github.com/galaxyproject/planemo/pull/899\n.. _Pull Request 896: https://github.com/galaxyproject/planemo/pull/896\n.. _Pull Request 894: https://github.com/galaxyproject/planemo/pull/894\n.. _Pull Request 876: https://github.com/galaxyproject/planemo/pull/876\n.. _Pull Request 893: https://github.com/galaxyproject/planemo/pull/893\n.. _Pull Request 892: https://github.com/galaxyproject/planemo/pull/892\n.. _Pull Request 891: https://github.com/galaxyproject/planemo/pull/891\n.. _Pull Request 889: https://github.com/galaxyproject/planemo/pull/889\n.. _Pull Request 888: https://github.com/galaxyproject/planemo/pull/888\n.. _Pull Request 887: https://github.com/galaxyproject/planemo/pull/887\n.. _Pull Request 882: https://github.com/galaxyproject/planemo/pull/882\n.. _Pull Request 877: https://github.com/galaxyproject/planemo/pull/877\n.. _Pull Request 874: https://github.com/galaxyproject/planemo/pull/874\n.. _Pull Request 871: https://github.com/galaxyproject/planemo/pull/871\n.. _Pull Request 870: https://github.com/galaxyproject/planemo/pull/870\n.. _Pull Request 864: https://github.com/galaxyproject/planemo/pull/864\n.. _Pull Request 867: https://github.com/galaxyproject/planemo/pull/867\n.. _Pull Request 868: https://github.com/galaxyproject/planemo/pull/868\n.. _bad810a: https://github.com/galaxyproject/planemo/commit/bad810a\n.. _Pull Request 851: https://github.com/galaxyproject/planemo/pull/851\n.. _Pull Request 856: https://github.com/galaxyproject/planemo/pull/856\n.. _Pull Request 860: https://github.com/galaxyproject/planemo/pull/860\n.. _Pull Request 866: https://github.com/galaxyproject/planemo/pull/866\n.. _Pull Request 861: https://github.com/galaxyproject/planemo/pull/861\n.. _324c776: https://github.com/galaxyproject/planemo/commit/324c776\n.. _72d2ca7: https://github.com/galaxyproject/planemo/commit/72d2ca7\n.. _b12b117: https://github.com/galaxyproject/planemo/commit/b12b117\n.. _016b923: https://github.com/galaxyproject/planemo/commit/016b923\n.. _2002b49: https://github.com/galaxyproject/planemo/commit/2002b49\n.. _Pull Request 843: https://github.com/galaxyproject/planemo/pull/843\n.. _Pull Request 842: https://github.com/galaxyproject/planemo/pull/842\n.. _Pull Request 841: https://github.com/galaxyproject/planemo/pull/841\n.. _Pull Request 847: https://github.com/galaxyproject/planemo/pull/847\n.. _Pull Request 848: https://github.com/galaxyproject/planemo/pull/848\n.. _Pull Request 849: https://github.com/galaxyproject/planemo/pull/849\n.. _Pull Request 850: https://github.com/galaxyproject/planemo/pull/850\n.. _Pull Request 836: https://github.com/galaxyproject/planemo/pull/836\n.. _Pull Request 833: https://github.com/galaxyproject/planemo/pull/833\n.. _Pull Request 837: https://github.com/galaxyproject/planemo/pull/837\n.. _Pull Request 840: https://github.com/galaxyproject/planemo/pull/840\n.. _Pull Request 838: https://github.com/galaxyproject/planemo/pull/838\n.. _Pull Request 834: https://github.com/galaxyproject/planemo/pull/834\n.. _Pull Request 835: https://github.com/galaxyproject/planemo/pull/835\n.. _347c622: https://github.com/galaxyproject/planemo/commit/347c622\n.. _Pull Request 832: https://github.com/galaxyproject/planemo/pull/832\n.. _Pull Request 831: https://github.com/galaxyproject/planemo/pull/831\n.. _Pull Request 830: https://github.com/galaxyproject/planemo/pull/830\n.. _Pull Request 829: https://github.com/galaxyproject/planemo/pull/829\n.. _Pull Request 828: https://github.com/galaxyproject/planemo/pull/828\n.. _Pull Request 826: https://github.com/galaxyproject/planemo/pull/826\n.. _Pull Request 827: https://github.com/galaxyproject/planemo/pull/827\n.. _Pull Request 825: https://github.com/galaxyproject/planemo/pull/825\n.. _Pull Request 820: https://github.com/galaxyproject/planemo/pull/820\n.. _Pull Request 823: https://github.com/galaxyproject/planemo/pull/823\n.. _Pull Request 822: https://github.com/galaxyproject/planemo/pull/822\n.. _a5c72e3: https://github.com/galaxyproject/planemo/commit/a5c72e3\n.. _Pull Request 818: https://github.com/galaxyproject/planemo/pull/818\n.. _Pull Request 816: https://github.com/galaxyproject/planemo/pull/816\n.. _Pull Request 817: https://github.com/galaxyproject/planemo/pull/817\n.. _Pull Request 795: https://github.com/galaxyproject/planemo/pull/795\n.. _Pull Request 799: https://github.com/galaxyproject/planemo/pull/799\n.. _Pull Request 800: https://github.com/galaxyproject/planemo/pull/800\n.. _Pull Request 781: https://github.com/galaxyproject/planemo/pull/781\n.. _Pull Request 801: https://github.com/galaxyproject/planemo/pull/801\n.. _Pull Request 802: https://github.com/galaxyproject/planemo/pull/802\n.. _Pull Request 803: https://github.com/galaxyproject/planemo/pull/803\n.. _Pull Request 805: https://github.com/galaxyproject/planemo/pull/805\n.. _Pull Request 806: https://github.com/galaxyproject/planemo/pull/806\n.. _Pull Request 809: https://github.com/galaxyproject/planemo/pull/809\n.. _Pull Request 810: https://github.com/galaxyproject/planemo/pull/810\n.. _Pull Request 787: https://github.com/galaxyproject/planemo/pull/787\n.. _Pull Request 792: https://github.com/galaxyproject/planemo/pull/792\n.. _dc443d6: https://github.com/galaxyproject/planemo/commit/dc443d6\n.. _8cfe9e9: https://github.com/galaxyproject/planemo/commit/8cfe9e9\n.. _41f7df1: https://github.com/galaxyproject/planemo/commit/41f7df1\n.. _Pull Request 790: https://github.com/galaxyproject/planemo/pull/790\n.. _Pull Request 776: https://github.com/galaxyproject/planemo/pull/776\n.. _Pull Request 774: https://github.com/galaxyproject/planemo/pull/774\n.. _Pull Request 773: https://github.com/galaxyproject/planemo/pull/773\n.. _Pull Request 771: https://github.com/galaxyproject/planemo/pull/771\n.. _Pull Request 770: https://github.com/galaxyproject/planemo/pull/770\n.. _Pull Request 769: https://github.com/galaxyproject/planemo/pull/769\n.. _Pull Request 768: https://github.com/galaxyproject/planemo/pull/768\n.. _Pull Request 764: https://github.com/galaxyproject/planemo/pull/764\n.. _Pull Request 761: https://github.com/galaxyproject/planemo/pull/761\n.. _Pull Request 759: https://github.com/galaxyproject/planemo/pull/759\n.. _Pull Request 756: https://github.com/galaxyproject/planemo/pull/756\n.. _Pull Request 753: https://github.com/galaxyproject/planemo/pull/753\n.. _Pull Request 747: https://github.com/galaxyproject/planemo/pull/747\n.. _Pull Request 745: https://github.com/galaxyproject/planemo/pull/745\n.. _Pull Request 743: https://github.com/galaxyproject/planemo/pull/743\n.. _Pull Request 739: https://github.com/galaxyproject/planemo/pull/739\n.. _Pull Request 738: https://github.com/galaxyproject/planemo/pull/738\n.. _Pull Request 725: https://github.com/galaxyproject/planemo/pull/725\n.. _Pull Request 727: https://github.com/galaxyproject/planemo/pull/727\n.. _Pull Request 729: https://github.com/galaxyproject/planemo/pull/729\n.. _Pull Request 730: https://github.com/galaxyproject/planemo/pull/730\n.. _Pull Request 731: https://github.com/galaxyproject/planemo/pull/731\n.. _Pull Request 733: https://github.com/galaxyproject/planemo/pull/733\n.. _Pull Request 732: https://github.com/galaxyproject/planemo/pull/732\n.. _Pull Request 704: https://github.com/galaxyproject/planemo/pull/704\n.. _Pull Request 709: https://github.com/galaxyproject/planemo/pull/709\n.. _Pull Request 715: https://github.com/galaxyproject/planemo/pull/715\n.. _Pull Request 716: https://github.com/galaxyproject/planemo/pull/716\n.. _Pull Request 720: https://github.com/galaxyproject/planemo/pull/720\n.. _Pull Request 723: https://github.com/galaxyproject/planemo/pull/723\n.. _8a608e0: https://github.com/galaxyproject/planemo/commit/8a608e0\n.. _ecc1bc2: https://github.com/galaxyproject/planemo/commit/ecc1bc2\n.. _Pull Request 702: https://github.com/galaxyproject/planemo/pull/702\n.. _Pull Request 701: https://github.com/galaxyproject/planemo/pull/701\n.. _Pull Request 699: https://github.com/galaxyproject/planemo/pull/699\n.. _91b6fa0: https://github.com/galaxyproject/planemo/commit/91b6fa0\n.. _904d77a: https://github.com/galaxyproject/planemo/commit/904d77a\n.. _9636682: https://github.com/galaxyproject/planemo/commit/9636682\n.. _475104c: https://github.com/galaxyproject/planemo/commit/475104c\n.. _Pull Request 684: https://github.com/galaxyproject/planemo/pull/684\n.. _Pull Request 687: https://github.com/galaxyproject/planemo/pull/687\n.. _Pull Request 688: https://github.com/galaxyproject/planemo/pull/688\n.. _Pull Request 689: https://github.com/galaxyproject/planemo/pull/689\n.. _Pull Request 690: https://github.com/galaxyproject/planemo/pull/690\n.. _Issue 494: https://github.com/galaxyproject/planemo/issues/494\n.. _Pull Request 665: https://github.com/galaxyproject/planemo/pull/665\n.. _Pull Request 675: https://github.com/galaxyproject/planemo/pull/675\n.. _Pull Request 680: https://github.com/galaxyproject/planemo/pull/680\n.. _Pull Request 682: https://github.com/galaxyproject/planemo/pull/682\n.. _Pull Request 683: https://github.com/galaxyproject/planemo/pull/683\n.. _Pull Request 662: https://github.com/galaxyproject/planemo/pull/662\n.. _Pull Request 665: https://github.com/galaxyproject/planemo/pull/665\n.. _Pull Request 664: https://github.com/galaxyproject/planemo/pull/664\n.. _84c4a73: https://github.com/galaxyproject/planemo/commit/84c4a73\n.. _32f41c9: https://github.com/galaxyproject/planemo/commit/32f41c9\n.. _3129216: https://github.com/galaxyproject/planemo/commit/3129216\n.. _b4ae44d: https://github.com/galaxyproject/planemo/commit/b4ae44d\n.. _3c95b7b: https://github.com/galaxyproject/planemo/commit/3c95b7b\n.. _06bcf19: https://github.com/galaxyproject/planemo/commit/06bcf19\n.. _525de8f: https://github.com/galaxyproject/planemo/commit/525de8f\n.. _9867e56: https://github.com/galaxyproject/planemo/commit/9867e56\n.. _ce0dc4e: https://github.com/galaxyproject/planemo/commit/ce0dc4e\n.. _4c0f100: https://github.com/galaxyproject/planemo/commit/4c0f100\n.. _04238d3: https://github.com/galaxyproject/planemo/commit/04238d3\n.. _ced5ce2: https://github.com/galaxyproject/planemo/commit/ced5ce2\n.. _9ab4a0d: https://github.com/galaxyproject/planemo/commit/9ab4a0d\n.. _Pull Request 640: https://github.com/galaxyproject/planemo/pull/640\n.. _0a1abfe: https://github.com/galaxyproject/planemo/commit/0a1abfe\n.. _Pull Request 649: https://github.com/galaxyproject/planemo/pull/649\n.. _Issue 620: https://github.com/galaxyproject/planemo/issues/620\n.. _Pull Request 643: https://github.com/galaxyproject/planemo/pull/643\n.. _Pull Request 642: https://github.com/galaxyproject/planemo/pull/642\n.. _Pull Request 641: https://github.com/galaxyproject/planemo/pull/641\n.. _Pull Request 639: https://github.com/galaxyproject/planemo/pull/639\n.. _Pull Request 635: https://github.com/galaxyproject/planemo/pull/635\n.. _Issue 633: https://github.com/galaxyproject/planemo/issues/633\n.. _Issue 260: https://github.com/galaxyproject/planemo/issues/260\n.. _Pull Request 638: https://github.com/galaxyproject/planemo/pull/638\n.. _6638caa: https://github.com/galaxyproject/planemo/commit/6638caa\n.. _8faf661: https://github.com/galaxyproject/planemo/commit/8faf661\n.. _e343b67: https://github.com/galaxyproject/planemo/commit/e343b67\n.. _Pull Request 634: https://github.com/galaxyproject/planemo/pull/634\n.. _84ebc1f: https://github.com/galaxyproject/planemo/commit/84ebc1f\n.. _03c9658: https://github.com/galaxyproject/planemo/commit/03c9658\n.. _08c067c: https://github.com/galaxyproject/planemo/commit/08c067c\n.. _fca4183: https://github.com/galaxyproject/planemo/commit/fca4183\n.. _Issue 564: https://github.com/galaxyproject/planemo/issues/564\n.. _Pull Request 628: https://github.com/galaxyproject/planemo/pull/628\n.. _Issue 515: https://github.com/galaxyproject/planemo/issues/515\n.. _Pull Request 629: https://github.com/galaxyproject/planemo/pull/629\n.. _Pull Request 614: https://github.com/galaxyproject/planemo/pull/614\n.. _32acd68: https://github.com/galaxyproject/planemo/commit/32acd68\n.. _4595953: https://github.com/galaxyproject/planemo/commit/4595953\n.. _Pull Request 612: https://github.com/galaxyproject/planemo/pull/612\n.. _Issue 388: https://github.com/galaxyproject/planemo/issues/388\n.. _Pull Request 610: https://github.com/galaxyproject/planemo/pull/610\n.. _Pull Request 609: https://github.com/galaxyproject/planemo/pull/609\n.. _Pull Request 608: https://github.com/galaxyproject/planemo/pull/608\n.. _Pull Request 605: https://github.com/galaxyproject/planemo/pull/605\n.. _Pull Request 606: https://github.com/galaxyproject/planemo/pull/606\n.. _Pull Request 602: https://github.com/galaxyproject/planemo/pull/602\n.. _Pull Request 570: https://github.com/galaxyproject/planemo/pull/570\n.. _9228416: https://github.com/galaxyproject/planemo/commit/9228416\n.. _50d3c4a: https://github.com/galaxyproject/planemo/commit/50d3c4a\n.. _Issue 578: https://github.com/galaxyproject/planemo/issues/578\n.. _Pull Request 591: https://github.com/galaxyproject/planemo/pull/591\n.. _Pull Request 590: https://github.com/galaxyproject/planemo/pull/590\n.. _f0da66f: https://github.com/galaxyproject/planemo/commit/f0da66f\n.. _19b2ee9: https://github.com/galaxyproject/planemo/commit/19b2ee9\n.. _9da8387: https://github.com/galaxyproject/planemo/commit/9da8387\n.. _08cef54: https://github.com/galaxyproject/planemo/commit/08cef54\n.. _2e4e5fc: https://github.com/galaxyproject/planemo/commit/2e4e5fc\n.. _2e4e5fc: https://github.com/galaxyproject/planemo/commit/2e4e5fc\n.. _Issue 573: https://github.com/galaxyproject/planemo/issues/573\n.. _Pull Request 579: https://github.com/galaxyproject/planemo/pull/579\n.. _ccdd2d5: https://github.com/galaxyproject/planemo/commit/ccdd2d5\n.. _e925ba1: https://github.com/galaxyproject/planemo/commit/e925ba1\n.. _ea5324f: https://github.com/galaxyproject/planemo/commit/ea5324f\n.. _ca88b0c: https://github.com/galaxyproject/planemo/commit/ca88b0c\n.. _b6d8294: https://github.com/galaxyproject/planemo/commit/b6d8294\n.. _6a6f164: https://github.com/galaxyproject/planemo/commit/6a6f164\n.. _d6da3a8: https://github.com/galaxyproject/planemo/commit/d6da3a8\n.. _1ef05d2: https://github.com/galaxyproject/planemo/commit/1ef05d2\n.. _7cca2e4: https://github.com/galaxyproject/planemo/commit/7cca2e4\n.. _34538de: https://github.com/galaxyproject/planemo/commit/34538de\n.. _6f91719: https://github.com/galaxyproject/planemo/commit/6f91719\n.. _Pull Request 566: https://github.com/galaxyproject/planemo/pull/566\n.. _Pull Request 559: https://github.com/galaxyproject/planemo/pull/559\n.. _Pull Request 561: https://github.com/galaxyproject/planemo/pull/561\n.. _Pull Request 565: https://github.com/galaxyproject/planemo/pull/565\n.. _Pull Request 555: https://github.com/galaxyproject/planemo/pull/555\n.. _a8e797b: https://github.com/galaxyproject/planemo/commit/a8e797b\n.. _6c03de8: https://github.com/galaxyproject/planemo/commit/6c03de8\n.. _ef4b9f4: https://github.com/galaxyproject/planemo/commit/ef4b9f4\n.. _f7b6c7e: https://github.com/galaxyproject/planemo/commit/f7b6c7e\n.. _07d94bd: https://github.com/galaxyproject/planemo/commit/07d94bd\n.. _ca19910: https://github.com/galaxyproject/planemo/commit/ca19910\n.. _24008ab: https://github.com/galaxyproject/planemo/commit/24008ab\n.. _ce44e87: https://github.com/galaxyproject/planemo/commit/ce44e87\n.. _Pull Request 550: https://github.com/galaxyproject/planemo/pull/550\n.. _c2204b3: https://github.com/galaxyproject/planemo/commit/c2204b3\n.. _c262b6d: https://github.com/galaxyproject/planemo/commit/c262b6d\n.. _Pull Request 539: https://github.com/galaxyproject/planemo/pull/539\n.. _Pull Request 541: https://github.com/galaxyproject/planemo/pull/541\n.. _Pull Request 540: https://github.com/galaxyproject/planemo/pull/540\n.. _Pull Request 545: https://github.com/galaxyproject/planemo/pull/545\n.. _Pull Request 546: https://github.com/galaxyproject/planemo/pull/546\n.. _3ceaa40: https://github.com/galaxyproject/planemo/commit/3ceaa40\n.. _057f4f0: https://github.com/galaxyproject/planemo/commit/057f4f0\n.. _9fdf490: https://github.com/galaxyproject/planemo/commit/9fdf490\n.. _8c088c6: https://github.com/galaxyproject/planemo/commit/8c088c6\n.. _e2398fb: https://github.com/galaxyproject/planemo/commit/e2398fb\n.. _Pull Request 526: https://github.com/galaxyproject/planemo/pull/526\n.. _Pull Request 528: https://github.com/galaxyproject/planemo/pull/528\n.. _Pull Request 525: https://github.com/galaxyproject/planemo/pull/525\n.. _a811e65: https://github.com/galaxyproject/planemo/commit/a811e65\n.. _Pull Request 521: https://github.com/galaxyproject/planemo/pull/521\n.. _a066afb: https://github.com/galaxyproject/planemo/commit/a066afb\n.. _Pull Request 512: https://github.com/galaxyproject/planemo/pull/512\n.. _08bb354: https://github.com/galaxyproject/planemo/commit/08bb354\n.. _Pull Request 513: https://github.com/galaxyproject/planemo/pull/513\n.. _Pull Request 510: https://github.com/galaxyproject/planemo/pull/510\n.. _e890ab5: https://github.com/galaxyproject/planemo/commit/e890ab5\n.. _Pull Request 507: https://github.com/galaxyproject/planemo/pull/507\n.. _d53bcd6: https://github.com/galaxyproject/planemo/commit/d53bcd6\n.. _725b232: https://github.com/galaxyproject/planemo/commit/725b232\n.. _Pull Request 498: https://github.com/galaxyproject/planemo/pull/498\n.. _01584c5: https://github.com/galaxyproject/planemo/commit/01584c5\n.. _01f2af9: https://github.com/galaxyproject/planemo/commit/01f2af9\n.. _0298510: https://github.com/galaxyproject/planemo/commit/0298510\n.. _02a08a0: https://github.com/galaxyproject/planemo/commit/02a08a0\n.. _05cc9f4: https://github.com/galaxyproject/planemo/commit/05cc9f485ee87bc344e3f43bb1cfd025a16a6247\n.. _069e7ba: https://github.com/galaxyproject/planemo/commit/069e7ba\n.. _08de8de: https://github.com/galaxyproject/planemo/commit/08de8de\n.. _0bd4ff0: https://github.com/galaxyproject/planemo/commit/0bd4ff0\n.. _0e4f70a: https://github.com/galaxyproject/planemo/commit/0e4f70a\n.. _0f8cb10: https://github.com/galaxyproject/planemo/commit/0f8cb10\n.. _13a5ae7: https://github.com/galaxyproject/planemo/commit/13a5ae7\n.. _15804be: https://github.com/galaxyproject/planemo/commit/15804be\n.. _15d33c7: https://github.com/galaxyproject/planemo/commit/15d33c7\n.. _182fe57: https://github.com/galaxyproject/planemo/commit/182fe57\n.. _1927168: https://github.com/galaxyproject/planemo/commit/1927168\n.. _1982076: https://github.com/galaxyproject/planemo/commit/1982076\n.. _19900a6: https://github.com/galaxyproject/planemo/commit/19900a6\n.. _1a157d4: https://github.com/galaxyproject/planemo/commit/1a157d4\n.. _1a85493: https://github.com/galaxyproject/planemo/commit/1a85493\n.. _1c6cfbb: https://github.com/galaxyproject/planemo/commit/1c6cfbb\n.. _1c7ee5b: https://github.com/galaxyproject/planemo/commit/1c7ee5b\n.. _1cd0e2d: https://github.com/galaxyproject/planemo/commit/1cd0e2d\n.. _1e3668a: https://github.com/galaxyproject/planemo/commit/1e3668a\n.. _2052db0: https://github.com/galaxyproject/planemo/commit/2052db0\n.. _20a8680: https://github.com/galaxyproject/planemo/commit/20a86807cb7ea87db2dbc0197ae08a40df3ab2bc\n.. _21bb463: https://github.com/galaxyproject/planemo/commit/21bb463ad6c321bcb669603049a5e89a69766ad9\n.. _25ef0d5: https://github.com/galaxyproject/planemo/commit/25ef0d5\n.. _26e378e: https://github.com/galaxyproject/planemo/commit/26e378e\n.. _26e3cdb: https://github.com/galaxyproject/planemo/commit/26e3cdb\n.. _2a7c792: https://github.com/galaxyproject/planemo/commit/2a7c792\n.. _2ae2b49: https://github.com/galaxyproject/planemo/commit/2ae2b49\n.. _2e41e0a: https://github.com/galaxyproject/planemo/commit/2e41e0a\n.. _2f66fc3: https://github.com/galaxyproject/planemo/commit/2f66fc3\n.. _30a9c3f: https://github.com/galaxyproject/planemo/commit/30a9c3f\n.. _32c6e7f: https://github.com/galaxyproject/planemo/commit/32c6e7f78bb8f04d27615cfd8948b0b89f27b4e6\n.. _33294d2: https://github.com/galaxyproject/planemo/commit/33294d2\n.. _334f2d4: https://github.com/galaxyproject/planemo/commit/334f2d4\n.. _343902d: https://github.com/galaxyproject/planemo/commit/343902d\n.. _3499ca0: https://github.com/galaxyproject/planemo/commit/3499ca0a15affcaf8ac9efc55880da40b0626679\n.. _358a42c: https://github.com/galaxyproject/planemo/commit/358a42c\n.. _36ac6d8: https://github.com/galaxyproject/planemo/commit/36ac6d8\n.. _36f7cb1: https://github.com/galaxyproject/planemo/commit/36f7cb114f77731f90860d513a930e10ce5c1ba5\n.. _37dcc07: https://github.com/galaxyproject/planemo/commit/37dcc07\n.. _39fedd2: https://github.com/galaxyproject/planemo/commit/39fedd2\n.. _3f4ab44: https://github.com/galaxyproject/planemo/commit/3f4ab44\n.. _40a1f57: https://github.com/galaxyproject/planemo/commit/40a1f57\n.. _411a8da: https://github.com/galaxyproject/planemo/commit/411a8da21c92ba37c7ad95bfce9928d9b8fd998e\n.. _44de95c: https://github.com/galaxyproject/planemo/commit/44de95c0d7087a5822941959f9a062f6382e329b\n.. _45135ff: https://github.com/galaxyproject/planemo/commit/45135ff\n.. _4823c5e: https://github.com/galaxyproject/planemo/commit/4823c5e\n.. _49c5c1e: https://github.com/galaxyproject/planemo/commit/49c5c1e\n.. _4c71299: https://github.com/galaxyproject/planemo/commit/4c71299\n.. _4cd571c: https://github.com/galaxyproject/planemo/commit/4cd571c\n.. _4d29bf1: https://github.com/galaxyproject/planemo/commit/4d29bf1\n.. _4d6f7d9: https://github.com/galaxyproject/planemo/commit/4d6f7d9\n.. _4e1377c: https://github.com/galaxyproject/planemo/commit/4e1377c\n.. _4f61025: https://github.com/galaxyproject/planemo/commit/4f61025\n.. _508dce7: https://github.com/galaxyproject/planemo/commit/508dce7\n.. _53a6766: https://github.com/galaxyproject/planemo/commit/53a6766cdebdddc976189f6dc6a264bb4105c4bf\n.. _53edd99: https://github.com/galaxyproject/planemo/commit/53edd99\n.. _552059f: https://github.com/galaxyproject/planemo/commit/552059f\n.. _572e754: https://github.com/galaxyproject/planemo/commit/572e754\n.. _5b97f2e: https://github.com/galaxyproject/planemo/commit/5b97f2e\n.. _5d08b67: https://github.com/galaxyproject/planemo/commit/5d08b67\n.. _5d7db92: https://github.com/galaxyproject/planemo/commit/5d7db92\n.. _5e0b6d1: https://github.com/galaxyproject/planemo/commit/5e0b6d1\n.. _63cd431: https://github.com/galaxyproject/planemo/commit/63cd431\n.. _63e456c: https://github.com/galaxyproject/planemo/commit/63e456c\n.. _6409449: https://github.com/galaxyproject/planemo/commit/6409449\n.. _6514ff5: https://github.com/galaxyproject/planemo/commit/6514ff5\n.. _65b999d: https://github.com/galaxyproject/planemo/commit/65b999d21bacc133a80ecf5f61e0728afec66ccc\n.. _6b4e7a6: https://github.com/galaxyproject/planemo/commit/6b4e7a6\n.. _6bcf699: https://github.com/galaxyproject/planemo/commit/6bcf699\n.. _6d0f502: https://github.com/galaxyproject/planemo/commit/6d0f502\n.. _6d81a94: https://github.com/galaxyproject/planemo/commit/6d81a94\n.. _6e1e726: https://github.com/galaxyproject/planemo/commit/6e1e726\n.. _7572e99: https://github.com/galaxyproject/planemo/commit/7572e99\n.. _764ce01: https://github.com/galaxyproject/planemo/commit/764ce01\n.. _775bf49: https://github.com/galaxyproject/planemo/commit/775bf49\n.. _776773c: https://github.com/galaxyproject/planemo/commit/776773c\n.. _78f8274: https://github.com/galaxyproject/planemo/commit/78f82747996e4a28f96c85ad72efe5e54c8c74bd\n.. _7be1bf5: https://github.com/galaxyproject/planemo/commit/7be1bf5\n.. _7c69bf6: https://github.com/galaxyproject/planemo/commit/7c69bf6\n.. _7d07782: https://github.com/galaxyproject/planemo/commit/7d077828559c9c9c352ac814f9e3b86b1b3a2a9f\n.. _8117e03: https://github.com/galaxyproject/planemo/commit/8117e03\n.. _8207026: https://github.com/galaxyproject/planemo/commit/8207026\n.. _826d371: https://github.com/galaxyproject/planemo/commit/826d371\n.. _82e8b1f: https://github.com/galaxyproject/planemo/commit/82e8b1f17eae526aeb341cb4fffb8d09d73bb419\n.. _834bfb2: https://github.com/galaxyproject/planemo/commit/834bfb2929d367892a3abe9c0b88d5a0277d7905\n.. _83e227a: https://github.com/galaxyproject/planemo/commit/83e227a\n.. _85b9614: https://github.com/galaxyproject/planemo/commit/85b961465f46351507f80ddc3758349535060502\n.. _89674cb: https://github.com/galaxyproject/planemo/commit/89674cb\n.. _8b31850: https://github.com/galaxyproject/planemo/commit/8b31850\n.. _8e96864: https://github.com/galaxyproject/planemo/commit/8e96864\n.. _8eda729: https://github.com/galaxyproject/planemo/commit/8eda729\n.. _912df02: https://github.com/galaxyproject/planemo/commit/912df02\n.. _916f610: https://github.com/galaxyproject/planemo/commit/916f610\n.. _93b7bda: https://github.com/galaxyproject/planemo/commit/93b7bda\n.. _94097c7: https://github.com/galaxyproject/planemo/commit/94097c7\n.. _9427b47: https://github.com/galaxyproject/planemo/commit/9427b47\n.. _94645ed: https://github.com/galaxyproject/planemo/commit/94645ed\n.. _949a36d: https://github.com/galaxyproject/planemo/commit/949a36d\n.. _95d5cba: https://github.com/galaxyproject/planemo/commit/95d5cba\n.. _965511d: https://github.com/galaxyproject/planemo/commit/965511d\n.. _988de1d: https://github.com/galaxyproject/planemo/commit/988de1d\n.. _98fdc8c: https://github.com/galaxyproject/planemo/commit/98fdc8c\n.. _99ee51a: https://github.com/galaxyproject/planemo/commit/99ee51a\n.. _9bf1eab: https://github.com/galaxyproject/planemo/commit/9bf1eab\n.. _9e746b4: https://github.com/galaxyproject/planemo/commit/9e746b455e3b15219878cddcdeda722979639401\n.. _9f3957d: https://github.com/galaxyproject/planemo/commit/9f3957d\n.. _9ff0d2d: https://github.com/galaxyproject/planemo/commit/9ff0d2d\n.. _CWL: http://www.commonwl.org/\n.. _Issue 108: https://github.com/galaxyproject/planemo/issues/108\n.. _Issue 114: https://github.com/galaxyproject/planemo/issues/114\n.. _Issue 118: https://github.com/galaxyproject/planemo/issues/118\n.. _Issue 124: https://github.com/galaxyproject/planemo/issues/#124\n.. _Issue 138: https://github.com/galaxyproject/planemo/issues/#138\n.. _Issue 139: https://github.com/galaxyproject/planemo/issues/139\n.. _Issue 150: https://github.com/galaxyproject/planemo/issues/150\n.. _Issue 156: https://github.com/galaxyproject/planemo/issues/156\n.. _Issue 158: https://github.com/galaxyproject/planemo/issues/158\n.. _Issue 159: https://github.com/galaxyproject/planemo/issues/159\n.. _Issue 15: https://github.com/galaxyproject/planemo/issues/15\n.. _Issue 161: https://github.com/galaxyproject/planemo/issues/161\n.. _Issue 167: https://github.com/galaxyproject/planemo/issues/167\n.. _Issue 168: https://github.com/galaxyproject/planemo/issues/168\n.. _Issue 169: https://github.com/galaxyproject/planemo/issues/169\n.. _Issue 170: https://github.com/galaxyproject/planemo/issues/170\n.. _Issue 176: https://github.com/galaxyproject/planemo/issues/176\n.. _Issue 179: https://github.com/galaxyproject/planemo/issues/179\n.. _Issue 180: https://github.com/galaxyproject/planemo/issues/180\n.. _Issue 181: https://github.com/galaxyproject/planemo/issues/181\n.. _Issue 184: https://github.com/galaxyproject/planemo/issues/184\n.. _Issue 186: https://github.com/galaxyproject/planemo/issues/186\n.. _Issue 188: https://github.com/galaxyproject/planemo/issues/188\n.. _Issue 189: https://github.com/galaxyproject/planemo/issues/189\n.. _Issue 192: https://github.com/galaxyproject/planemo/issues/192\n.. _Issue 205: https://github.com/galaxyproject/planemo/issues/205\n.. _Issue 206: https://github.com/galaxyproject/planemo/issues/206\n.. _Issue 209: https://github.com/galaxyproject/planemo/issues/209\n.. _Issue 211: https://github.com/galaxyproject/planemo/issues/211\n.. _Issue 217: https://github.com/galaxyproject/planemo/issues/217\n.. _Issue 223: https://github.com/galaxyproject/planemo/issues/223\n.. _Issue 231: https://github.com/galaxyproject/planemo/issues/231\n.. _Issue 233: https://github.com/galaxyproject/planemo/issues/233\n.. _Issue 240: https://github.com/galaxyproject/planemo/issues/240\n.. _Issue 243: https://github.com/galaxyproject/planemo/issues/243\n.. _Issue 245: https://github.com/galaxyproject/planemo/issues/245\n.. _Issue 246: https://github.com/galaxyproject/planemo/issues/246\n.. _Issue 272: https://github.com/galaxyproject/planemo/issues/272\n.. _Issue 303: https://github.com/galaxyproject/planemo/issues/303\n.. _Issue 313: https://github.com/galaxyproject/planemo/issues/313\n.. _Issue 329: https://github.com/galaxyproject/planemo/issues/329\n.. _Issue 333: https://github.com/galaxyproject/planemo/issues/333\n.. _Issue 361: https://github.com/galaxyproject/planemo/issues/361\n.. _Issue 362: https://github.com/galaxyproject/planemo/issues/362\n.. _Issue 373: https://github.com/galaxyproject/planemo/issues/373\n.. _Issue 391: https://github.com/galaxyproject/planemo/issues/391\n.. _Issue 416: https://github.com/galaxyproject/planemo/issues/416\n.. _Issue 420: https://github.com/galaxyproject/planemo/issues/420\n.. _Issue 475: https://github.com/galaxyproject/planemo/issues/475\n.. _Issue 61: https://github.com/galaxyproject/planemo/issues/61\n.. _Issue 70: https://github.com/galaxyproject/planemo/issues/70\n.. _Issue 78: https://github.com/galaxyproject/planemo/issues/78\n.. _Issue 80: https://github.com/galaxyproject/planemo/issues/80\n.. _Issue 83: https://github.com/galaxyproject/planemo/issues/83\n.. _Issue 88: https://github.com/galaxyproject/planemo/issues/88\n.. _Issue 89: https://github.com/galaxyproject/planemo/issues/#89\n.. _Issue 91: https://github.com/galaxyproject/planemo/issues/#91\n.. _Pull Request 101: https://github.com/galaxyproject/planemo/pull/101\n.. _Pull Request 102: https://github.com/galaxyproject/planemo/pull/102\n.. _Pull Request 104: https://github.com/galaxyproject/planemo/pull/104\n.. _Pull Request 111: https://github.com/galaxyproject/planemo/pull/111\n.. _Pull Request 113: https://github.com/galaxyproject/planemo/pull/113\n.. _Pull Request 129: https://github.com/galaxyproject/planemo/pull/129\n.. _Pull Request 130: https://github.com/galaxyproject/planemo/pull/130\n.. _Pull Request 143: https://github.com/galaxyproject/planemo/pull/143\n.. _Pull Request 151: https://github.com/galaxyproject/planemo/pull/151\n.. _Pull Request 155: https://github.com/galaxyproject/planemo/pull/155\n.. _Pull Request 164: https://github.com/galaxyproject/planemo/pull/164\n.. _Pull Request 171: https://github.com/galaxyproject/planemo/pull/171\n.. _Pull Request 173: https://github.com/galaxyproject/planemo/pull/173\n.. _Pull Request 175: https://github.com/galaxyproject/planemo/pull/175\n.. _Pull Request 185: https://github.com/galaxyproject/planemo/pull/185\n.. _Pull Request 186: https://github.com/galaxyproject/planemo/pull/186\n.. _Pull Request 187: https://github.com/galaxyproject/planemo/pull/187\n.. _Pull Request 190: https://github.com/galaxyproject/planemo/pull/190\n.. _Pull Request 196: https://github.com/galaxyproject/planemo/pull/196\n.. _Pull Request 1: https://github.com/galaxyproject/planemo/pull/1\n.. _Pull Request 200: https://github.com/galaxyproject/planemo/pull/200\n.. _Pull Request 203: https://github.com/galaxyproject/planemo/pull/203\n.. _Pull Request 206: https://github.com/galaxyproject/planemo/pull/206\n.. _Pull Request 207: https://github.com/galaxyproject/planemo/pull/207\n.. _Pull Request 208: https://github.com/galaxyproject/planemo/pull/208\n.. _Pull Request 210: https://github.com/galaxyproject/planemo/pull/210\n.. _Pull Request 213: https://github.com/galaxyproject/planemo/pull/213\n.. _Pull Request 215: https://github.com/galaxyproject/planemo/pull/215\n.. _Pull Request 216: https://github.com/galaxyproject/planemo/pull/216\n.. _Pull Request 22: https://github.com/galaxyproject/planemo/pull/22\n.. _Pull Request 230: https://github.com/galaxyproject/planemo/pull/230\n.. _Pull Request 235: https://github.com/galaxyproject/planemo/pull/235\n.. _Pull Request 23: https://github.com/galaxyproject/planemo/pull/23\n.. _Pull Request 251: https://github.com/galaxyproject/planemo/pull/251\n.. _Pull Request 253: https://github.com/galaxyproject/planemo/pull/253\n.. _Pull Request 254: https://github.com/galaxyproject/planemo/pull/254\n.. _Pull Request 255: https://github.com/galaxyproject/planemo/pull/255\n.. _Pull Request 256: https://github.com/galaxyproject/planemo/pull/256\n.. _Pull Request 277: https://github.com/galaxyproject/planemo/pull/277\n.. _Pull Request 278: https://github.com/galaxyproject/planemo/pull/278\n.. _Pull Request 284: https://github.com/galaxyproject/planemo/pull/284\n.. _Pull Request 285: https://github.com/galaxyproject/planemo/pull/285\n.. _Pull Request 287: https://github.com/galaxyproject/planemo/pull/287\n.. _Pull Request 292: https://github.com/galaxyproject/planemo/pull/292\n.. _Pull Request 297: https://github.com/galaxyproject/planemo/pull/297\n.. _Pull Request 29: https://github.com/galaxyproject/planemo/pull/29\n.. _Pull Request 301: https://github.com/galaxyproject/planemo/pull/301\n.. _Pull Request 304: https://github.com/galaxyproject/planemo/pull/304\n.. _Pull Request 305: https://github.com/galaxyproject/planemo/pull/305\n.. _Pull Request 307: https://github.com/galaxyproject/planemo/pull/307\n.. _Pull Request 309: https://github.com/galaxyproject/planemo/pull/309\n.. _Pull Request 310: https://github.com/galaxyproject/planemo/pull/310\n.. _Pull Request 311: https://github.com/galaxyproject/planemo/pull/311\n.. _Pull Request 312: https://github.com/galaxyproject/planemo/pull/312\n.. _Pull Request 314: https://github.com/galaxyproject/planemo/pull/314\n.. _Pull Request 316: https://github.com/galaxyproject/planemo/pull/316\n.. _Pull Request 322: https://github.com/galaxyproject/planemo/pull/322\n.. _Pull Request 327: https://github.com/galaxyproject/planemo/pull/327\n.. _Pull Request 330: https://github.com/galaxyproject/planemo/pull/330\n.. _Pull Request 333: https://github.com/galaxyproject/planemo/pull/333\n.. _Pull Request 334: https://github.com/galaxyproject/planemo/pull/334\n.. _Pull Request 335: https://github.com/galaxyproject/planemo/pull/335\n.. _Pull Request 339: https://github.com/galaxyproject/planemo/pull/339\n.. _Pull Request 33: https://github.com/galaxyproject/planemo/pull/33\n.. _Pull Request 343: https://github.com/galaxyproject/planemo/pull/343\n.. _Pull Request 344: https://github.com/galaxyproject/planemo/pull/344\n.. _Pull Request 345: https://github.com/galaxyproject/planemo/pull/345\n.. _Pull Request 350: https://github.com/galaxyproject/planemo/pull/350\n.. _Pull Request 351: https://github.com/galaxyproject/planemo/pull/351\n.. _Pull Request 356: https://github.com/galaxyproject/planemo/pull/356\n.. _Pull Request 375: https://github.com/galaxyproject/planemo/pull/375\n.. _Pull Request 390: https://github.com/galaxyproject/planemo/pull/390\n.. _Pull Request 394: https://github.com/galaxyproject/planemo/pull/394\n.. _Pull Request 398: https://github.com/galaxyproject/planemo/pull/398\n.. _Pull Request 403: https://github.com/galaxyproject/planemo/pull/403\n.. _Pull Request 40: https://github.com/galaxyproject/planemo/pull/40\n.. _Pull Request 425: https://github.com/galaxyproject/planemo/pull/425\n.. _Pull Request 426: https://github.com/galaxyproject/planemo/pull/426\n.. _Pull Request 428: https://github.com/galaxyproject/planemo/pull/428\n.. _Pull Request 429: https://github.com/galaxyproject/planemo/pull/429\n.. _Pull Request 454: https://github.com/galaxyproject/planemo/pull/454\n.. _Pull Request 472: https://github.com/galaxyproject/planemo/pull/472\n.. _Pull Request 479: https://github.com/galaxyproject/planemo/pull/479\n.. _Pull Request 480: https://github.com/galaxyproject/planemo/pull/480\n.. _Pull Request 484: https://github.com/galaxyproject/planemo/pull/484\n.. _Pull Request 488: https://github.com/galaxyproject/planemo/pull/488\n.. _Pull Request 491: https://github.com/galaxyproject/planemo/pull/491\n.. _Pull Request 51: https://github.com/galaxyproject/planemo/pull/51\n.. _Pull Request 56: https://github.com/galaxyproject/planemo/pull/56\n.. _Pull Request 63: https://github.com/galaxyproject/planemo/pull/63\n.. _Pull Request 68: https://github.com/galaxyproject/planemo/pull/68\n.. _Pull Request 6: https://github.com/galaxyproject/planemo/pull/6\n.. _Pull Request 98: https://github.com/galaxyproject/planemo/pull/98\n.. _Pull Request 99: https://github.com/galaxyproject/planemo/pull/99\n.. _XSD: http://www.w3schools.com/schema/\n.. _a13a120: https://github.com/galaxyproject/planemo/commit/a13a120\n.. _a2c13e4: https://github.com/galaxyproject/planemo/commit/a2c13e46259e3be35de1ecaae858ba818bb94734\n.. _a2ee135: https://github.com/galaxyproject/planemo/commit/a2ee135\n.. _a4110a8: https://github.com/galaxyproject/planemo/commit/a4110a85a770988e5cd3c31ccc9475717897d59c\n.. _a4e6958: https://github.com/galaxyproject/planemo/commit/a4e6958\n.. _a58a3b8: https://github.com/galaxyproject/planemo/commit/a58a3b8\n.. _a87899b: https://github.com/galaxyproject/planemo/commit/a87899b\n.. _aad1eed: https://github.com/galaxyproject/planemo/commit/aad1eed\n.. _ac4f828: https://github.com/galaxyproject/planemo/commit/ac4f82898f7006799142503a33c3978428660ce7\n.. _ad3b2f0: https://github.com/galaxyproject/planemo/commit/ad3b2f0\n.. _af39061: https://github.com/galaxyproject/planemo/commit/af390612004dab636d8696839bb723d39f97c85d\n.. _af7448c: https://github.com/galaxyproject/planemo/commit/af7448c\n.. _b0b867e: https://github.com/galaxyproject/planemo/commit/b0b867e\n.. _b1c8f1d: https://github.com/galaxyproject/planemo/commit/b1c8f1d\n.. _b53006d: https://github.com/galaxyproject/planemo/commit/b53006d\n.. _b757791: https://github.com/galaxyproject/planemo/commit/b757791\n.. _b7d9e96: https://github.com/galaxyproject/planemo/commit/b7d9e96\n.. _b86fe1f: https://github.com/galaxyproject/planemo/commit/b86fe1f\n.. _b8d90ab: https://github.com/galaxyproject/planemo/commit/b8d90abab8bf53ae2e7cca4317223c01af9ab68c\n.. _b9232e5: https://github.com/galaxyproject/planemo/commit/b9232e55e713abbd1d9ce8b0b34cbec6c701dc17\n.. _badc25f: https://github.com/galaxyproject/planemo/commit/badc25fca495b61457ffb2e027f3fe9cf17c798f\n.. _bioblend: https://github.com/galaxyproject/bioblend/\n.. _c1713d2: https://github.com/galaxyproject/planemo/commit/c1713d2\n.. _c23569f: https://github.com/galaxyproject/planemo/commit/c23569f\n.. _c444855: https://github.com/galaxyproject/planemo/commit/c444855\n.. _c4dfd55: https://github.com/galaxyproject/planemo/commit/c4dfd55\n.. _c8640b6: https://github.com/galaxyproject/planemo/commit/c8640b6\n.. _cb5b906: https://github.com/galaxyproject/planemo/commit/cb5b906\n.. _cc1a447: https://github.com/galaxyproject/planemo/commit/cc1a447\n.. _cc8abb6: https://github.com/galaxyproject/planemo/commit/cc8abb6\n.. _ce8e1be: https://github.com/galaxyproject/planemo/commit/ce8e1be\n.. _cwltool: https://github.com/common-workflow-language/cwltool/.. _d26929e: https://github.com/galaxyproject/planemo/commit/d26929e\n.. _d26929e: https://github.com/galaxyproject/planemo/commit/d26929e\n.. _d755fe7: https://github.com/galaxyproject/planemo/commit/d755fe7\n.. _d76b489: https://github.com/galaxyproject/planemo/commit/d76b489\n.. _d8f2038: https://github.com/galaxyproject/planemo/commit/d8f2038\n.. _dad2d9d: https://github.com/galaxyproject/planemo/commit/dad2d9d\n.. _dd94ddc: https://github.com/galaxyproject/planemo/commit/dd94ddc\n.. _dff4f33: https://github.com/galaxyproject/planemo/commit/dff4f33c750a8dbe651c38e149a26dd42e706a82\n.. _e0577e7: https://github.com/galaxyproject/planemo/commit/e0577e7\n.. _e0acf91: https://github.com/galaxyproject/planemo/commit/e0acf91\n.. _e38c436: https://github.com/galaxyproject/planemo/commit/e38c436\n.. _e769118: https://github.com/galaxyproject/planemo/commit/e769118\n.. _e8c1d45: https://github.com/galaxyproject/planemo/commit/e8c1d45f0c9a11bcf69ec2967836c3b8f432dd97\n.. _eb039c0: https://github.com/galaxyproject/planemo/commit/eb039c0\n.. _ec6e30f: https://github.com/galaxyproject/planemo/commit/ec6e30f\n.. _efc5f30: https://github.com/galaxyproject/planemo/commit/efc5f30\n.. _f0610d7: https://github.com/galaxyproject/planemo/commit/f0610d7\n.. _f3394e7: https://github.com/galaxyproject/planemo/commit/f3394e7\n.. _f3c6917: https://github.com/galaxyproject/planemo/commit/f3c6917\n.. _f3cafaa: https://github.com/galaxyproject/planemo/commit/f3cafaa\n.. _f7554d1: https://github.com/galaxyproject/planemo/commit/f7554d1\n.. _f798c7e: https://github.com/galaxyproject/planemo/commit/f798c7e\n.. _f854138: https://github.com/galaxyproject/planemo/commit/f854138\n.. _f99f6c1: https://github.com/galaxyproject/planemo/commit/f99f6c1\n.. _fba3874: https://github.com/galaxyproject/planemo/commit/fba3874\n.. _fdb1b51: https://github.com/galaxyproject/planemo/commit/fdb1b51\n.. _fdce74c: https://github.com/galaxyproject/planemo/commit/fdce74c\n.. _fe7ad46: https://github.com/galaxyproject/planemo/commit/fe7ad46\n.. _fea51fc: https://github.com/galaxyproject/planemo/commit/fea51fc\n.. _lxml: http://lxml.de/\n.. _nose: https://nose.readthedocs.org/en/latest/\n.. _xmllint: http://xmlsoft.org/xmllint.html\n.. _Conda: http://conda.pydata.org/\n.. _Tool Factory: http://bioinformatics.oxfordjournals.org/content/early/2012/09/27/bioinformatics.bts573.full.pdf\n.. _git: https://git-scm.com/\n.. _anaconda-verify: https://github.com/ContinuumIO/anaconda-verify\n.. _galaxy.xsd: https://github.com/galaxyproject/planemo/blob/master/planemo/xml/xsd/tool/galaxy.xsd\n.. _setup.py: https://github.com/galaxyproject/planemo/blob/master/setup.py\n.. _Bioconductor: https://www.bioconductor.org/\n.. _tools-iuc: https://github.com/galaxyproject/tools-iuc\n.. _PyPI: https://pypi.python.org/pypi\n.. _Involucro: https://github.com/involucro/involucro\n.. _Bioconda: https://bioconda.github.io/\n.. _pip: https://pip.pypa.io/en/stable/\n.. _BioContainers: http://biocontainers.pro/\n.. _Toil: https://github.com/BD2KGenomics/toil\n.. _quay.io: https://quay.io/\n.. _galaxy-lib: https://github.com/galaxyproject/galaxy-lib\n.. _@abretaud: https://github.com/abretaud\n.. _@erasche: https://github.com/erasche\n.. _@peterjc: https://github.com/peterjc\n.. _@mr-c: https://github.com/mr-c\n.. _@martenson: https://github.com/martenson\n.. _@nsoranzo: https://github.com/nsoranzo\n.. _@nturaga: https://github.com/nturaga\n.. _@bgruening: https://github.com/bgruening\n.. _@carlfeberhard: https://github.com/carlfeberhard\n.. _@lparsons: https://github.com/lparsons\n.. _@kellrott: https://github.com/kellrott\n.. _@mvdbeek: https://github.com/mvdbeek\n.. _@natefoo: https://github.com/natefoo\n.. _@pstew: https://github.com/pstew\n.. _@ramezrawas: https://github.com/ramezrawas\n.. _@chambm: https://github.com/chambm\n.. _@takadonet: https://github.com/takadonet\n.. _@petrkadlec: https://github.com/petrkadlec\n.. _@pvanheus: https://github.com/pvanheus\n.. _@einon: https://github.com/einon\n.. _@blankenberg: https://github.com/blankenberg\n.. _@JeanFred: https://github.com/JeanFred\n.. _@gregvonkuster: https://github.com/gregvonkuster\n.. _@remimarenco: https://github.com/remimarenco\n.. _@thriqon: https://github.com/thriqon\n.. _@RJMW: https://github.com/RJMW\n.. _@manabuishii: https://github.com/manabuishii\n.. _@dfornika: https://github.com/dfornika\n.. _@bernt-matthias: https://github.com/bernt-matthias\n.. _@katrinleinweber: https://github.com/katrinleinweber\n.. _@bebatut: https://github.com/bebatut\n.. _@selten: https://github.com/selten\n.. _@shiltemann: https://github.com/shiltemann\n.. _@bedroesb: https://github.com/bedroesb\n.. _@ic4f: https://github.com/ic4f\n.. _@martin-raden: https://github.com/martin-raden\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/galaxyproject/planemo", "keywords": "planemo", "license": "AFL", "maintainer": "", "maintainer_email": "", "name": "planemo", "package_url": "https://pypi.org/project/planemo/", "platform": "", "project_url": "https://pypi.org/project/planemo/", "project_urls": { "Homepage": "https://github.com/galaxyproject/planemo" }, "release_url": "https://pypi.org/project/planemo/0.62.1/", "requires_dist": [ "aenum", "BeautifulSoup4", "bioblend (>=0.13.0)", "Click", "configparser", "cwltool (==1.0.20180820141117)", "docutils", "ephemeris (>=0.10.0)", "galaxy-lib (>=18.9.2)", "glob2", "gxformat2 (>=0.8.0)", "html5lib (!=0.99999999,!=0.999999999,!=1.0b09,!=1.0b10,>=0.9999999)", "jinja2", "lxml", "oyaml", "pyaml", "pyyaml", "six (>=1.7.0)", "virtualenv" ], "requires_python": "", "summary": "Command-line utilities to assist in building tools for the Galaxy project (http://galaxyproject.org/).", "version": "0.62.1" }, "last_serial": 5972198, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "198da3fe5e3b14b68a7901022be740bd", "sha256": "b4d7c2d94222779c60540ae594e4c899b01d8b2d9e44a8296b03f90b2444330c" }, "downloads": -1, "filename": "planemo-0.10.0-py2.7.egg", "has_sig": false, "md5_digest": "198da3fe5e3b14b68a7901022be740bd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 333202, "upload_time": "2015-05-06T05:17:25", "url": "https://files.pythonhosted.org/packages/a2/37/c374cf5b56452b669f97e50aee092387e4cd24859bef50eece3e3a723030/planemo-0.10.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "abeb134bc4f5416642b53a2eb8835b98", "sha256": "702356c36545ab56c415117436f7bf410c97011b3c589ee0a97db93f6d061509" }, "downloads": -1, "filename": "planemo-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "abeb134bc4f5416642b53a2eb8835b98", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 175888, "upload_time": "2015-05-06T05:17:27", "url": "https://files.pythonhosted.org/packages/2a/82/7f216a8efa6c394464a229d06c582eaa4fbf116a525e38e1f07e3c647c1d/planemo-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b92bf83799865929032615ca15527a00", "sha256": "2962c13d06565e2509ab79e1a0b4e8f63f5c2517b9569847fb5848207f69b329" }, "downloads": -1, "filename": "planemo-0.10.0.tar.gz", "has_sig": false, "md5_digest": "b92bf83799865929032615ca15527a00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150710, "upload_time": "2015-05-06T05:17:31", "url": "https://files.pythonhosted.org/packages/e7/7a/1ed1115b67c4eadf0f32c5a09201f99f2b5e52fc620378a46011b7b9730a/planemo-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "9396e614fc0fe5ef2b43ca3818fb5270", "sha256": "8814591e73621fc8b02ac3d3aad13ce78da776431afcc6da53b9391346c50d81" }, "downloads": -1, "filename": "planemo-0.11.0-py2.7.egg", "has_sig": false, "md5_digest": "9396e614fc0fe5ef2b43ca3818fb5270", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 396810, "upload_time": "2015-05-12T16:50:07", "url": "https://files.pythonhosted.org/packages/36/02/da0ed9bfd9fe44222c282e33363f5ddffae650afe14e0fb5967728979dff/planemo-0.11.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "10bc227bf92337cde3f7f69f4543dbf2", "sha256": "1fa8d51d58a4bd54eb1762a7d1cc5f23b90aba2050b5b6b2ddf8ce8a59d118de" }, "downloads": -1, "filename": "planemo-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "10bc227bf92337cde3f7f69f4543dbf2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 239595, "upload_time": "2015-05-12T16:50:11", "url": "https://files.pythonhosted.org/packages/45/a6/018e366ae0de03f1cf3c0ea9f36e5a35f5652aa06fb128a0fdcf463f5fb1/planemo-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f3aa4571e49a2f9d526a290422aa73d", "sha256": "9d22ef7acc7af94818889f892992122d4091443609dfd654edbbb1ce8954e116" }, "downloads": -1, "filename": "planemo-0.11.0.tar.gz", "has_sig": false, "md5_digest": "6f3aa4571e49a2f9d526a290422aa73d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213413, "upload_time": "2015-05-12T16:50:14", "url": "https://files.pythonhosted.org/packages/e0/c9/0c77f86e4891030c84e8f666fb23b1d32078cd3163ba5b3fe7cbde0b7ca6/planemo-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "33a4d66889a20d8b9ee7bf9540cca0e1", "sha256": "81e32cdaa4fb7ae870dd9f47233efc6a5c35435f9eb9000d5a12c62ce1ae5306" }, "downloads": -1, "filename": "planemo-0.11.1-py2.7.egg", "has_sig": false, "md5_digest": "33a4d66889a20d8b9ee7bf9540cca0e1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 397096, "upload_time": "2015-05-12T17:36:27", "url": "https://files.pythonhosted.org/packages/51/06/cccfa1bb8c4aa186d5b4677bf0bcdd388f2bcef03020241e0879d674a294/planemo-0.11.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d32f8be9c3174eacba74dd4c7e656b73", "sha256": "67db1d1fe2219362198a3e6c0fcf40e399f3ecc2ab31b2eb44369b346a83900f" }, "downloads": -1, "filename": "planemo-0.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d32f8be9c3174eacba74dd4c7e656b73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 239818, "upload_time": "2015-05-12T17:36:31", "url": "https://files.pythonhosted.org/packages/28/d8/8852a6f19d5460d285c67be0560d54a489ecd2203752b1f26dcf057ee8c2/planemo-0.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d01321f9656f4541f51e32cffbc4bda", "sha256": "ad4536dbcbbc1dc4a1e21e332cf47c5a26cdafd46b2a942b50069145fca850f9" }, "downloads": -1, "filename": "planemo-0.11.1.tar.gz", "has_sig": false, "md5_digest": "3d01321f9656f4541f51e32cffbc4bda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213659, "upload_time": "2015-05-12T17:36:34", "url": "https://files.pythonhosted.org/packages/c5/2d/9bf3f1a9276fdc9e43500da5fda9a7b576a26eff6b6c2fe75bef332f5df3/planemo-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "2be7be8a0b3d7e6556ab29560e4ea81b", "sha256": "6c680f3c4b732634976d0634ee40cc46e4b6b442164e0363d2eebf25a3f09a45" }, "downloads": -1, "filename": "planemo-0.12.0-py2.7.egg", "has_sig": false, "md5_digest": "2be7be8a0b3d7e6556ab29560e4ea81b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 417121, "upload_time": "2015-05-21T20:13:40", "url": "https://files.pythonhosted.org/packages/01/78/d26f41181da3ad2aac59a242c930954b5bc21b08cda8267e9be957ae135d/planemo-0.12.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6be01a1914b82a60064cfb6f92923f24", "sha256": "c1fd2993e7b2e3b320ba8c255b72125be9cb3e8a9085a2fb7a7568ebb768b462" }, "downloads": -1, "filename": "planemo-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6be01a1914b82a60064cfb6f92923f24", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 249018, "upload_time": "2015-05-21T20:13:45", "url": "https://files.pythonhosted.org/packages/06/2d/db0fa3d6743288f90ecd58df7cc69822662e00850813b60378ef3b8124b0/planemo-0.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6405d18585521346548ad07995f1642a", "sha256": "48629ee662daad3f6fe46e2c73fdfb36ffc1d174f6563ccf68a9d88b3b99346c" }, "downloads": -1, "filename": "planemo-0.12.0.tar.gz", "has_sig": false, "md5_digest": "6405d18585521346548ad07995f1642a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 221788, "upload_time": "2015-05-21T20:13:48", "url": "https://files.pythonhosted.org/packages/f4/10/435451bf1acf61adb6ed6b7783737468191314e225e7873f0b66af3a8f15/planemo-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "7e76e10c2b15d36ee9e37d9909146265", "sha256": "c81e742d25d77c30017c6b8ae3ef65b773ebb033602ae72f88abd7833832a66d" }, "downloads": -1, "filename": "planemo-0.12.1-py2.7.egg", "has_sig": false, "md5_digest": "7e76e10c2b15d36ee9e37d9909146265", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 417201, "upload_time": "2015-05-21T20:24:21", "url": "https://files.pythonhosted.org/packages/b7/04/3b8b2879af515d87f672eef2a8f1df58ef0a28690581f345840880c4828f/planemo-0.12.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "66ac5b118c7f30d636700e1b3009b651", "sha256": "599f8886b8e9c866eae7802d006ac79b0819d08a3bc1625e59aa058cde195209" }, "downloads": -1, "filename": "planemo-0.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66ac5b118c7f30d636700e1b3009b651", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 249150, "upload_time": "2015-05-21T20:24:26", "url": "https://files.pythonhosted.org/packages/4f/1c/6e61c0055c7ccdbcbe220caa982a976d5839d3f39c81f4b0fe20d647ef73/planemo-0.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea2fff8f464e03bae737faccb1981f62", "sha256": "213d0ea5a6196cda062a52d2ee080265738d68b8092701bc4a4dab846074ddfc" }, "downloads": -1, "filename": "planemo-0.12.1.tar.gz", "has_sig": false, "md5_digest": "ea2fff8f464e03bae737faccb1981f62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222165, "upload_time": "2015-05-21T20:24:30", "url": "https://files.pythonhosted.org/packages/f3/1b/4e8cf574c2e63683a9cd5e10d0d906ddc0be0e81c196a86ac5ec0a79682c/planemo-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "3d943bc8af07dd942258a06f60e8c4cb", "sha256": "69258929e3c91a8b946b7e21d43fb156dffe7a7f02a89c8bb7c6669ea713044a" }, "downloads": -1, "filename": "planemo-0.12.2-py2.7.egg", "has_sig": false, "md5_digest": "3d943bc8af07dd942258a06f60e8c4cb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 417685, "upload_time": "2015-05-23T23:30:47", "url": "https://files.pythonhosted.org/packages/ef/43/bb4ca99ab78142587b6bf10e73b61bb607842e6605aebf611d3cc12e77ec/planemo-0.12.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ccf02e651c236ddc76f8f72ff8c37345", "sha256": "f4ce88b39308761900f6b6dfff71c15b445999785b910fdbacd20a27aabeeb62" }, "downloads": -1, "filename": "planemo-0.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ccf02e651c236ddc76f8f72ff8c37345", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 249407, "upload_time": "2015-05-23T23:30:52", "url": "https://files.pythonhosted.org/packages/eb/2b/abaff7a2ec0d176944bdb4638079840a2201ca3110d65f8cc6d00c6a2a0e/planemo-0.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ef503d6fb47060429c15906d1df4bc99", "sha256": "089ebd9d6aab51979e27a8b72b791efbe6a2a2da6d0a6c121912aad4ea3c318d" }, "downloads": -1, "filename": "planemo-0.12.2.tar.gz", "has_sig": false, "md5_digest": "ef503d6fb47060429c15906d1df4bc99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222465, "upload_time": "2015-05-23T23:30:57", "url": "https://files.pythonhosted.org/packages/fd/8e/ea605b7095e68bf64d607e6b73e694dd597e10161385d185d8ffbc136905/planemo-0.12.2.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "fc6a98aef26c1fc233d58385ffca990c", "sha256": "8a3a33c686ba9d886dd70e67f18a48fdea0829471c535c75d3fb7def2e5d6486" }, "downloads": -1, "filename": "planemo-0.13.0-py2.7.egg", "has_sig": false, "md5_digest": "fc6a98aef26c1fc233d58385ffca990c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 419498, "upload_time": "2015-06-28T16:26:15", "url": "https://files.pythonhosted.org/packages/48/6c/9380b3061fa812720ca5c045e5bd434762619927b552579b84d98a8e8f8c/planemo-0.13.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6ba411e002a56c3f72c262914c7b7a20", "sha256": "0e8f8776fca5f02c7c645e12084e0f8a1a2737b9a18d01f14d114c68f07b3fd2" }, "downloads": -1, "filename": "planemo-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ba411e002a56c3f72c262914c7b7a20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 250695, "upload_time": "2015-06-28T16:26:19", "url": "https://files.pythonhosted.org/packages/55/42/4561a5dbcf449bf559e2a0cee7c6b8ddfd0cdf40c7d4a49af02a71fd6033/planemo-0.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7f46b7721c9c91beabb3ccea3e2042d", "sha256": "fe4148d84f75cbf9d9d7b8fbf0497b2edfaecba05846e95e82777e11ebed7383" }, "downloads": -1, "filename": "planemo-0.13.0.tar.gz", "has_sig": false, "md5_digest": "d7f46b7721c9c91beabb3ccea3e2042d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224049, "upload_time": "2015-06-28T16:26:23", "url": "https://files.pythonhosted.org/packages/f8/8c/2912fee50a4a057b8280f0d6710a383d9f473597a44cb2e69097a6fda4f5/planemo-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "7a50027df3318fe2a0108f4d79f2fa97", "sha256": "c58102017916f7f69bcecd0beb37202258fc6e98d9a5064fa164df50a2998564" }, "downloads": -1, "filename": "planemo-0.13.1-py2.7.egg", "has_sig": false, "md5_digest": "7a50027df3318fe2a0108f4d79f2fa97", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 420019, "upload_time": "2015-07-02T03:09:45", "url": "https://files.pythonhosted.org/packages/e8/1b/ea38067ac6f19b24ae4a2cf31eb541739737bab220434bb2ff653fb72d73/planemo-0.13.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4a215897249fccb2897c69bc0f89126e", "sha256": "97cdb7aec66e2113eff5177899dc041bea1ab6809d465ac25a1063758a142cc9" }, "downloads": -1, "filename": "planemo-0.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4a215897249fccb2897c69bc0f89126e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 251265, "upload_time": "2015-07-02T03:09:49", "url": "https://files.pythonhosted.org/packages/9b/f3/33b779a9912c5783a0f11630b4e6ab8446a3be16103487effb6bb60dfb64/planemo-0.13.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36c5bccb6cb77bdb1796a8593a1ae2ed", "sha256": "29560a603d2c284eecfa740bb5273155c766478d2cb563e7d3bdbd587ee841c8" }, "downloads": -1, "filename": "planemo-0.13.1.tar.gz", "has_sig": false, "md5_digest": "36c5bccb6cb77bdb1796a8593a1ae2ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224828, "upload_time": "2015-07-02T03:09:53", "url": "https://files.pythonhosted.org/packages/5a/ad/8c3bf64cea093ef9e88c221c7619a36d921a1fe86bb18ec5867369c82d2c/planemo-0.13.1.tar.gz" } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "00558a0500b5bd0ffeb45d688125a270", "sha256": "890806251e673a5e969d635d3d6b1ea143318f0dd8e43e5247352e6ddd385cf8" }, "downloads": -1, "filename": "planemo-0.13.2-py2.7.egg", "has_sig": false, "md5_digest": "00558a0500b5bd0ffeb45d688125a270", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 420045, "upload_time": "2015-07-06T11:42:03", "url": "https://files.pythonhosted.org/packages/13/9a/c08043f352f3761078f7ae2fd5971834a8a35c4c6a8c10fa0e5f1e56ab4c/planemo-0.13.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2772ce2bcc0d81ce50d2b69b6e3b847f", "sha256": "75b4f1c17e941fd828eeef55475e783fa2787e0602dd85eb9fa180c53717ad93" }, "downloads": -1, "filename": "planemo-0.13.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2772ce2bcc0d81ce50d2b69b6e3b847f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 251281, "upload_time": "2015-07-06T11:42:08", "url": "https://files.pythonhosted.org/packages/49/60/6c10fdf3a2acbb96ce9abd8667cb4b482520e05620ca0a58358d5374a202/planemo-0.13.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33dfde868368e1d81581610ada228e6d", "sha256": "4eb0d5952a5bb90e27698b750e6a2b49ec2abc7458a843ab5808968803f5d89b" }, "downloads": -1, "filename": "planemo-0.13.2.tar.gz", "has_sig": false, "md5_digest": "33dfde868368e1d81581610ada228e6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224875, "upload_time": "2015-07-06T11:42:17", "url": "https://files.pythonhosted.org/packages/a0/63/101192310550b380a39e044472a84f4a2a2d3b6e549f44104366b19db4bd/planemo-0.13.2.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "65491dcc85cf4b6f3a18db9fe70d8bd3", "sha256": "b893074b7ecab695ba3dfcd70c2ee1ad32c4d87573adeffe4f7a3b8fe4a9fedf" }, "downloads": -1, "filename": "planemo-0.14.0-py2.7.egg", "has_sig": false, "md5_digest": "65491dcc85cf4b6f3a18db9fe70d8bd3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 420404, "upload_time": "2015-08-06T15:24:24", "url": "https://files.pythonhosted.org/packages/fd/d6/a9ade4d7454ac66118125e4a8c2f03c2500483194db7bcab125e9a61e47f/planemo-0.14.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "98bdaac0b07cf7d1840caa7717b83f6a", "sha256": "d2bb86800db82cf1d068101e8347bb206c68124c3efa2c2e24d6b11bd1c19484" }, "downloads": -1, "filename": "planemo-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "98bdaac0b07cf7d1840caa7717b83f6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 251839, "upload_time": "2015-08-06T15:24:30", "url": "https://files.pythonhosted.org/packages/43/97/ff81330c6719c1a41c06d7f3cf76837210b66e904e47fabcc21cd56a234c/planemo-0.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "525e6f55f177f0214c4ba45fc911d4b7", "sha256": "e28a7f3b661fb3a3a3978ff9264e8aa1159e6da77e9d7478554746231572ed50" }, "downloads": -1, "filename": "planemo-0.14.0.tar.gz", "has_sig": false, "md5_digest": "525e6f55f177f0214c4ba45fc911d4b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225731, "upload_time": "2015-08-06T15:24:34", "url": "https://files.pythonhosted.org/packages/90/f1/55be6670b2c6daf0379e874955f7cd2d16ab492d47c54f9097d467b25d61/planemo-0.14.0.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "ffa478797a3c4f3b07377dd5aa68c4a6", "sha256": "1df2f75791041dfb98148933616e3bcef40d8745dc0a35bdb681e841611f2071" }, "downloads": -1, "filename": "planemo-0.15.0-py2.7.egg", "has_sig": false, "md5_digest": "ffa478797a3c4f3b07377dd5aa68c4a6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 427914, "upload_time": "2015-10-01T20:43:46", "url": "https://files.pythonhosted.org/packages/f7/04/d9a78c616dc00591aad1647862634f7bdf6d0ce979cf8d596938f447c088/planemo-0.15.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "655b146469629f2f72a4a5ea95184533", "sha256": "4c6eda557fcb9506bb17faac97990b3a357c4a73d0ad5fb679b3a442ebbd48db" }, "downloads": -1, "filename": "planemo-0.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "655b146469629f2f72a4a5ea95184533", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 257106, "upload_time": "2015-10-01T20:43:50", "url": "https://files.pythonhosted.org/packages/49/b0/8b6d505f8f16e0061e9d4ab9b6cde368774713f1fde2a00318bfa888fe30/planemo-0.15.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0bef521c5c931ed3b2a8fa7637c3210e", "sha256": "02cfbd6b55efc7471d1604f5eed4abcf173c19ec5dd19e85df07193040cdec35" }, "downloads": -1, "filename": "planemo-0.15.0.tar.gz", "has_sig": false, "md5_digest": "0bef521c5c931ed3b2a8fa7637c3210e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230897, "upload_time": "2015-10-01T20:43:55", "url": "https://files.pythonhosted.org/packages/0a/21/06dba04f964178b0748e368af74bb2b9134e8222e241bfda7ab04a46cee2/planemo-0.15.0.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "0c0fe24e932792cd032c794f4dee998e", "sha256": "17f29ba68ec50f6e9a5e309368b0825856d51ae33ee908d5ea4bd901c998e72b" }, "downloads": -1, "filename": "planemo-0.16.0-py2.7.egg", "has_sig": false, "md5_digest": "0c0fe24e932792cd032c794f4dee998e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 442015, "upload_time": "2015-10-07T17:06:06", "url": "https://files.pythonhosted.org/packages/ca/6e/3dd5037b8889f75b700021cfa87ff7603e265363e8511d950c6d430bcacc/planemo-0.16.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "751e9b1f4d41c13d13c187add7be64fd", "sha256": "3ca81199f12832376bbebc3c5e93c11665489d682db545fc1a9b7b85378d8c31" }, "downloads": -1, "filename": "planemo-0.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "751e9b1f4d41c13d13c187add7be64fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 263654, "upload_time": "2015-10-07T17:06:23", "url": "https://files.pythonhosted.org/packages/b6/29/b8d58e02e24d0469890aa7a6f5bcb08403f216bc0c8978aaa0569de9b0b1/planemo-0.16.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2efd32a8700525c1716bf246ca99832", "sha256": "6d205af9082d6966cbfed0d43a5eadf473244644ec52933cf7f337c53a6e73a8" }, "downloads": -1, "filename": "planemo-0.16.0.tar.gz", "has_sig": false, "md5_digest": "e2efd32a8700525c1716bf246ca99832", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236963, "upload_time": "2015-10-07T17:06:30", "url": "https://files.pythonhosted.org/packages/8d/aa/139cf8da27c07f679dc9d024dfa831f2690bcef7815f514d934fa1221b89/planemo-0.16.0.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "36d47c97b712448551715366589e6e47", "sha256": "a1a5bfd902c75d7f8cf43848456cccbf4a8c73fda5ec2a61643bf5eb25e12a94" }, "downloads": -1, "filename": "planemo-0.17.0-py2.7.egg", "has_sig": false, "md5_digest": "36d47c97b712448551715366589e6e47", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 444811, "upload_time": "2015-10-19T13:01:06", "url": "https://files.pythonhosted.org/packages/19/9a/6e32e4f0e3bbfcff4b19f57f7437f770569b0e900f90dfa1c275b901da65/planemo-0.17.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "174bcf31be130bef2636b65f2056b29b", "sha256": "c63df3c90a4dfe8c4e9e86b0f0d532fb29fe7a8ed06683494ba880ea52ca0306" }, "downloads": -1, "filename": "planemo-0.17.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "174bcf31be130bef2636b65f2056b29b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 265470, "upload_time": "2015-10-19T13:01:33", "url": "https://files.pythonhosted.org/packages/67/22/d3d3c728d435c2322bdbcb5a874766f061ea5ee17e7438f6e572697509e5/planemo-0.17.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9697d099ec7c905db773825970f87db5", "sha256": "efc829aa1c579c5d8cace3a3da46284aa1a78fbec80f3a5a31a73e08f5d2bc6e" }, "downloads": -1, "filename": "planemo-0.17.0.tar.gz", "has_sig": false, "md5_digest": "9697d099ec7c905db773825970f87db5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 240762, "upload_time": "2015-10-19T13:01:46", "url": "https://files.pythonhosted.org/packages/10/cd/5327dbe9589fb32e4beda3b6eb82d9b9c9dd057550a97fd17fd61b8ab585/planemo-0.17.0.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "bfe816d095eae4c07e221800064f0c9b", "sha256": "9b1000209d0abaf4ca052d703ebcf3f527654a485ffcd0c348439a47473f7d34" }, "downloads": -1, "filename": "planemo-0.18.0-py2.7.egg", "has_sig": false, "md5_digest": "bfe816d095eae4c07e221800064f0c9b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 445472, "upload_time": "2015-10-20T17:34:44", "url": "https://files.pythonhosted.org/packages/2e/cd/6904066f03172d7944f419ddb93ed6138bad8ca141cf9a3a5efc3c0b6e3e/planemo-0.18.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2a69a362969e5d0cda10a4f6dd233bbe", "sha256": "662048417ab576048dbc936847cfd97ac2502d4c5fa34f13d9b708b4bfa9e483" }, "downloads": -1, "filename": "planemo-0.18.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a69a362969e5d0cda10a4f6dd233bbe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 265976, "upload_time": "2015-10-20T17:34:49", "url": "https://files.pythonhosted.org/packages/a9/ac/f0e595afd7280e4873badae01e0b85d0838c712851e0f05d1d2caf35c93a/planemo-0.18.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "788e0a7077a5e026968ada27f3806237", "sha256": "68be44313383455c3e921c03f573041abee5e02f4703b30e95bb63aa0d04e261" }, "downloads": -1, "filename": "planemo-0.18.0.tar.gz", "has_sig": false, "md5_digest": "788e0a7077a5e026968ada27f3806237", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241460, "upload_time": "2015-10-20T17:34:53", "url": "https://files.pythonhosted.org/packages/8c/ae/cab9e193bfd2d430109399fce75e9a7d426b273f6f51cccbe8ced134851b/planemo-0.18.0.tar.gz" } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "55d37c2704833778348f33194d901bb5", "sha256": "289651d8b6ad51d95d26b959fe5d3afab2948c7da86870d3c84c9baec9830102" }, "downloads": -1, "filename": "planemo-0.18.1-py2.7.egg", "has_sig": false, "md5_digest": "55d37c2704833778348f33194d901bb5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 447072, "upload_time": "2015-10-22T14:33:35", "url": "https://files.pythonhosted.org/packages/d2/4e/5d14c46cad5e7255356acbb53f80a749e584e55795fa6756df4ff7c60278/planemo-0.18.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bee6449bdeb4f6af8219feefaee77aed", "sha256": "fb6f882430f347bdb97e93c866aa66dc0d3d08b4c3a08cb52fa988420f75a750" }, "downloads": -1, "filename": "planemo-0.18.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bee6449bdeb4f6af8219feefaee77aed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 266905, "upload_time": "2015-10-22T14:33:43", "url": "https://files.pythonhosted.org/packages/0c/6e/e9277cf652b3692edefb717b4d59b3bf5c8426892983f173f9887681674a/planemo-0.18.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fb27c7f27456c4ebe2095a5970bdb37", "sha256": "0ea79d26d245f94fc0a07c1206222a0968c2ab50d302ad47c42859984b265d12" }, "downloads": -1, "filename": "planemo-0.18.1.tar.gz", "has_sig": false, "md5_digest": "7fb27c7f27456c4ebe2095a5970bdb37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 242203, "upload_time": "2015-10-22T14:33:50", "url": "https://files.pythonhosted.org/packages/85/04/b65e7f45159132e3255921c16b3489657d5435bee447d226336f2d5d457e/planemo-0.18.1.tar.gz" } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "0b2cc8d9a99fd221e15201a0249c5afe", "sha256": "ee8d37cf567dd1a38c79459053e408bf0bef4954787cb2268467351f02a60d7e" }, "downloads": -1, "filename": "planemo-0.19.0-py2.7.egg", "has_sig": false, "md5_digest": "0b2cc8d9a99fd221e15201a0249c5afe", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 477958, "upload_time": "2015-11-03T17:27:52", "url": "https://files.pythonhosted.org/packages/88/90/6b03f7c01940dbc0212f223b567896dec13ca9254345f6e9512b78885221/planemo-0.19.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8c7a6d25a9120d4c4d1889e27247b78f", "sha256": "36c734a7252442bfb08898cdd315ebabc49f6f1393ff7a9c13350bb9344fde49" }, "downloads": -1, "filename": "planemo-0.19.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c7a6d25a9120d4c4d1889e27247b78f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 281225, "upload_time": "2015-11-03T17:28:01", "url": "https://files.pythonhosted.org/packages/21/e4/4dab3011683b5f912283cdab47bee7af4f6577ad1782f30270593942350c/planemo-0.19.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc5c210ddf70a3792cb1f4be9272caf9", "sha256": "2cd2198ea2bb91574255064f9efe8552a5a3ce249c0a3378484befb3b335efe0" }, "downloads": -1, "filename": "planemo-0.19.0.tar.gz", "has_sig": false, "md5_digest": "fc5c210ddf70a3792cb1f4be9272caf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 254169, "upload_time": "2015-11-03T17:28:13", "url": "https://files.pythonhosted.org/packages/be/39/8c07fd61caba37b4b5f7a0a4fa754313eeeda460ef0a929fd5205c6a7a69/planemo-0.19.0.tar.gz" } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "cbea60e6e5d9d492808c2d27ab20be51", "sha256": "896e0c2cfb0c62c57b977fff1430b249a83e585776ed79c3fe0df74ac0cc3c19" }, "downloads": -1, "filename": "planemo-0.20.0-py2.7.egg", "has_sig": false, "md5_digest": "cbea60e6e5d9d492808c2d27ab20be51", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 484275, "upload_time": "2015-11-11T19:02:04", "url": "https://files.pythonhosted.org/packages/64/16/398f6d966d8ae5b44685eea0c7a9c663d52928463f3a0a3e9de3169607f4/planemo-0.20.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "61484bbfa4c2b37fdcd31ba96d131475", "sha256": "91e8b3955d4801f568e91360f63fa13d744b5074de0b04cf44775413c74e7591" }, "downloads": -1, "filename": "planemo-0.20.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61484bbfa4c2b37fdcd31ba96d131475", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 284140, "upload_time": "2015-11-11T19:02:35", "url": "https://files.pythonhosted.org/packages/71/1f/2fec4c7336a97ef9a6041f3cd2e47c0253af8ef173ede5ee9f290166d751/planemo-0.20.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cae2cf93f3aebb2c039be20c593de462", "sha256": "3ba1c34038462c1d00bf5223e7e0046af150b3d09fa34b82c413a72475de6dfe" }, "downloads": -1, "filename": "planemo-0.20.0.tar.gz", "has_sig": false, "md5_digest": "cae2cf93f3aebb2c039be20c593de462", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 256685, "upload_time": "2015-11-11T19:02:42", "url": "https://files.pythonhosted.org/packages/33/bc/cef1d4ad7fbcc8fd35b401f13e01c660250bb2d4351505af279a7c35241e/planemo-0.20.0.tar.gz" } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "13eb47f1a84c97d28a92ea51a44e7255", "sha256": "bf02307ba2ef1027d3244af1a32a7e2aa30f344e5062b5bc01b47ac47925427d" }, "downloads": -1, "filename": "planemo-0.21.0-py2.7.egg", "has_sig": false, "md5_digest": "13eb47f1a84c97d28a92ea51a44e7255", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 490424, "upload_time": "2015-11-29T15:51:39", "url": "https://files.pythonhosted.org/packages/02/93/43e2dd463a030185b57a9990d88d0c062f977af1cdd85e10ef15e477766a/planemo-0.21.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "88242c104451c145128f3e97cbaad2bd", "sha256": "0933a5a5258c5eabc2afb0c59c6b2e4cbb8eff7c23e630c4f9be74dc4ed5ac70" }, "downloads": -1, "filename": "planemo-0.21.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88242c104451c145128f3e97cbaad2bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 287886, "upload_time": "2015-11-29T15:51:45", "url": "https://files.pythonhosted.org/packages/6f/2f/6c56de523e4c58dea09d9dc34c850d2aa2b1326cfb62450fc87c0a6fe5b3/planemo-0.21.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60b1766b560162a3eabd6067c057f7cf", "sha256": "0c24fd87c2f4358b7b2d2f19e2bbbc2c8de4a15cb46aa9c680b4393b693d5e0c" }, "downloads": -1, "filename": "planemo-0.21.0.tar.gz", "has_sig": false, "md5_digest": "60b1766b560162a3eabd6067c057f7cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260818, "upload_time": "2015-11-29T15:51:53", "url": "https://files.pythonhosted.org/packages/a1/e0/6b25c4e38c50e55a912235f6a83524917fae98c449e8007b2ad37b548cee/planemo-0.21.0.tar.gz" } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "11c4c7af72b031580db98e4600a2df10", "sha256": "fc619da1e23584e09217683e4ac264c9fa3242cdede96ff7f1e28a701e4760eb" }, "downloads": -1, "filename": "planemo-0.21.1-py2.7.egg", "has_sig": false, "md5_digest": "11c4c7af72b031580db98e4600a2df10", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 490489, "upload_time": "2015-11-29T16:11:13", "url": "https://files.pythonhosted.org/packages/41/05/4430af9e19bf5d9fc0f8a888a4c818cf1e06f719422639362720bebeda3f/planemo-0.21.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "eb4dead51232a79c9b352ac0810d5923", "sha256": "2c8d25e5053b0dfd4b31ba9917cc4e18ea3bd630f2144771a85dec4979399b22" }, "downloads": -1, "filename": "planemo-0.21.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eb4dead51232a79c9b352ac0810d5923", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 288016, "upload_time": "2015-11-29T16:11:24", "url": "https://files.pythonhosted.org/packages/2f/f9/a2a7f47c822e729b671e5fb415831849e5971fe73a683c44a7f36bc5c46b/planemo-0.21.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "254f604d21ec8f669956686b6e8669d2", "sha256": "f7c06efbf1b4c14b48af75a44953092c02d1f0e9b5f214a2c7a31302331aed8d" }, "downloads": -1, "filename": "planemo-0.21.1.tar.gz", "has_sig": false, "md5_digest": "254f604d21ec8f669956686b6e8669d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261004, "upload_time": "2015-11-29T16:11:32", "url": "https://files.pythonhosted.org/packages/1b/eb/59648a6adbdd5b7e068b212903b9555e693b595219d4d8170ea0d879e508/planemo-0.21.1.tar.gz" } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "1922cabd7f3b0f9bf8783778a241cd58", "sha256": "8f22cb1a82a5046cc7f3b1741d2c7590238d25b51060ac509f2a2029d24cc754" }, "downloads": -1, "filename": "planemo-0.22.0-py2.7.egg", "has_sig": false, "md5_digest": "1922cabd7f3b0f9bf8783778a241cd58", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 331036, "upload_time": "2016-01-14T04:54:58", "url": "https://files.pythonhosted.org/packages/dc/7e/fe5690f8e61362bf16e27a85b0025e3b2522f88e47a9081aa5a9baf897b7/planemo-0.22.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6183e9968acf7f5c730201f046478053", "sha256": "4521bee6ca1a52891142b2bcbcba6e74970809c81fe181b93a9274dbea6bc995" }, "downloads": -1, "filename": "planemo-0.22.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6183e9968acf7f5c730201f046478053", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 210221, "upload_time": "2016-01-14T04:55:05", "url": "https://files.pythonhosted.org/packages/26/2f/ac9d4ac1479183d71f63cf52f69c2d470cfb29ac4a89fbd1523c9fb075da/planemo-0.22.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e2e4f6f16ccad120d9a207fec0ede61", "sha256": "7f35e806bfa490849ce6cda7804e34357c4879e4a2ef49f2f1ec5db727c0cfac" }, "downloads": -1, "filename": "planemo-0.22.0.tar.gz", "has_sig": false, "md5_digest": "4e2e4f6f16ccad120d9a207fec0ede61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228587, "upload_time": "2016-01-14T04:55:12", "url": "https://files.pythonhosted.org/packages/63/a3/e32c4eeefaba9f5c0f6f350b36216a4ce637959f1945eaf9b6c08497151f/planemo-0.22.0.tar.gz" } ], "0.22.1": [ { "comment_text": "", "digests": { "md5": "93823fbf9cf9e1b75142e1de370a7e4f", "sha256": "f95ae379bbe909b8bccbdae0f15af79385c149c8e3ab2fef130ee68c49fdb9d4" }, "downloads": -1, "filename": "planemo-0.22.1-py2.7.egg", "has_sig": false, "md5_digest": "93823fbf9cf9e1b75142e1de370a7e4f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 338458, "upload_time": "2016-01-14T10:07:03", "url": "https://files.pythonhosted.org/packages/68/b7/6b4f6e8985c94a34c84a7aaa145e67fd908fecd7c89c805632ed25892b52/planemo-0.22.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0fdc4af61f41e700e210ea6d7b3a5ace", "sha256": "cab81494e56c62e7093b3cdcc4d9f38e57d5356eeff0b462ed6f09e599f359d1" }, "downloads": -1, "filename": "planemo-0.22.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fdc4af61f41e700e210ea6d7b3a5ace", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 213476, "upload_time": "2016-01-14T10:07:10", "url": "https://files.pythonhosted.org/packages/bb/a6/e9dcb2e51a59b31768e1a6850814bf970f0de02619b5a9363484c56925ac/planemo-0.22.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad349b779598575e44b1b01438afb71e", "sha256": "1b64b6a89b7d0ffc19e90de72c0f4d6c7051f73264403dead4f8588e44e58ae6" }, "downloads": -1, "filename": "planemo-0.22.1.tar.gz", "has_sig": false, "md5_digest": "ad349b779598575e44b1b01438afb71e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 231012, "upload_time": "2016-01-14T10:07:15", "url": "https://files.pythonhosted.org/packages/f6/0e/f4863636c3de5741f915ce53dfb964bb54f5bafc22775d02187b7ea294d3/planemo-0.22.1.tar.gz" } ], "0.22.2": [ { "comment_text": "", "digests": { "md5": "a6b44d4f191c37e8564d61f70b60774f", "sha256": "8ea20e482b17cd8c8815fd156bd2fda3f40a26debecd487215a893581df8c239" }, "downloads": -1, "filename": "planemo-0.22.2-py2.7.egg", "has_sig": false, "md5_digest": "a6b44d4f191c37e8564d61f70b60774f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 338512, "upload_time": "2016-01-14T11:54:36", "url": "https://files.pythonhosted.org/packages/20/fa/a77d95f228e1c6d6412b84027279f827fa5627c6b7435252809b638fbf04/planemo-0.22.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fa6bced7820bfbf8c2adab7ccbc6147b", "sha256": "3afe90239bf272553a317b4b1389c0313d72c8c1a8bdcff733717e1b5c9a5d9b" }, "downloads": -1, "filename": "planemo-0.22.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa6bced7820bfbf8c2adab7ccbc6147b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 213549, "upload_time": "2016-01-14T11:54:43", "url": "https://files.pythonhosted.org/packages/94/14/c523cc343e1b364b66c2dcb69e721560316f215657daffc9df0193dacc15/planemo-0.22.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88dccc467ff0bdeb8feda5b407a5eff2", "sha256": "63be31359dd6899bf66ff0b9e489a9a48b20f8b3ad3bdcbaf20526d8922060d5" }, "downloads": -1, "filename": "planemo-0.22.2.tar.gz", "has_sig": false, "md5_digest": "88dccc467ff0bdeb8feda5b407a5eff2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 231162, "upload_time": "2016-01-14T11:54:54", "url": "https://files.pythonhosted.org/packages/18/33/27b2da8660644826282b08c5239c2d786096f4c6011616dc033073f34659/planemo-0.22.2.tar.gz" } ], "0.23.0": [ { "comment_text": "", "digests": { "md5": "a281f3f174b48922152b3d796ff446ad", "sha256": "d4b67f853007b69c7b799f6a9b9031c87f1f29e7888dd0f1254c9b2c45b894a5" }, "downloads": -1, "filename": "planemo-0.23.0-py2.7.egg", "has_sig": false, "md5_digest": "a281f3f174b48922152b3d796ff446ad", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 339528, "upload_time": "2016-02-15T16:33:24", "url": "https://files.pythonhosted.org/packages/ad/46/35542fcb8a0523d58e68fc1b08febb19ef5243d40dd9515a0ecff0c16c5d/planemo-0.23.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2a8adef6df40ecf027ca07d8f2a9d0c5", "sha256": "fc4ac4c11de328e6f510b1e546a94d36e2407a8621cc8f287af544493a004233" }, "downloads": -1, "filename": "planemo-0.23.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a8adef6df40ecf027ca07d8f2a9d0c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 215425, "upload_time": "2016-02-15T16:33:37", "url": "https://files.pythonhosted.org/packages/5b/25/28f8939026aa65c8710be137a24256fb52c85ac26c0f0ae25c541dd795ad/planemo-0.23.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f715cae718013fb1e32a5e0d5a4816c8", "sha256": "cab425a7c9251c053cfc885aa8ad94cdfa1129ab060902eb0c410b31ae1d5f7a" }, "downloads": -1, "filename": "planemo-0.23.0.tar.gz", "has_sig": false, "md5_digest": "f715cae718013fb1e32a5e0d5a4816c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 233414, "upload_time": "2016-02-15T16:33:45", "url": "https://files.pythonhosted.org/packages/8f/24/21f13b7958cde210b3c4ff418a3aba27865438fb3b94197d5f1b73b3a304/planemo-0.23.0.tar.gz" } ], "0.24.0": [ { "comment_text": "", "digests": { "md5": "f42f3336e723d36b445492965650d4f3", "sha256": "d805cecc949e507286b6be1c73a1286aeb228564a2c4a088054316f18323972e" }, "downloads": -1, "filename": "planemo-0.24.0-py2.7.egg", "has_sig": false, "md5_digest": "f42f3336e723d36b445492965650d4f3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 340574, "upload_time": "2016-03-29T20:33:31", "url": "https://files.pythonhosted.org/packages/d4/ba/3983b81e5ff784bc7a4b3e1adba73547c370c24335ed65ee725c8688e949/planemo-0.24.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fa3dba925937f7fe612cb45e03e354a7", "sha256": "6b24e3e2ef6a18bef1ef78df1a452ad9b71760eeca533032269872643d2afb3c" }, "downloads": -1, "filename": "planemo-0.24.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa3dba925937f7fe612cb45e03e354a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 216252, "upload_time": "2016-03-29T20:33:37", "url": "https://files.pythonhosted.org/packages/28/82/a433f7875943f2813aec5b4c11a3686252fc6846e3a82e981d187ab52ad9/planemo-0.24.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7595b1c1c13dde8c68fa74cd1febc4ee", "sha256": "a974040e8534b59a3a08f596645f85ee96d988fd564182964538b69873672b6a" }, "downloads": -1, "filename": "planemo-0.24.0.tar.gz", "has_sig": false, "md5_digest": "7595b1c1c13dde8c68fa74cd1febc4ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234582, "upload_time": "2016-03-29T20:33:47", "url": "https://files.pythonhosted.org/packages/ac/3b/98f8dac6a9387da7c6ac3ada108ea748ff79a09bbc20515be2f707ff1a39/planemo-0.24.0.tar.gz" } ], "0.24.1": [ { "comment_text": "", "digests": { "md5": "41c2900545335a3597440fc142cfe8d8", "sha256": "349c2faa107e2a95f793f35101189f4e2440aca096560a5f4111d84b40048ac0" }, "downloads": -1, "filename": "planemo-0.24.1-py2.7.egg", "has_sig": false, "md5_digest": "41c2900545335a3597440fc142cfe8d8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 341903, "upload_time": "2016-04-08T16:09:54", "url": "https://files.pythonhosted.org/packages/35/4a/958c97c2d509463ca9e21325e2883eb1b769caadf6c3ddc1ee4e3d891f78/planemo-0.24.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c7ae0cda341d2ddc8a08d0eff8377af7", "sha256": "c31daefc6ea529dd75c06d8a6b3ce65284f1f1889fb1cbda21c9f77802770b79" }, "downloads": -1, "filename": "planemo-0.24.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c7ae0cda341d2ddc8a08d0eff8377af7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 217057, "upload_time": "2016-04-08T16:14:33", "url": "https://files.pythonhosted.org/packages/8d/54/03a342999da654ef0288fdc63f89248e63cac396002812256d236c6ef779/planemo-0.24.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "796cdc630f1e40aa0de9635c88310713", "sha256": "7ebde5d871ca45c2f006db6644386997e9da376d0a704f4f7346fc733bb5894e" }, "downloads": -1, "filename": "planemo-0.24.1.tar.gz", "has_sig": false, "md5_digest": "796cdc630f1e40aa0de9635c88310713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235441, "upload_time": "2016-04-08T16:11:54", "url": "https://files.pythonhosted.org/packages/26/f0/f914a893ec0f0b12fcf63a7ee473b12f22c1c04e528620a32e6f89be5fe2/planemo-0.24.1.tar.gz" } ], "0.24.2": [ { "comment_text": "", "digests": { "md5": "5d23e400f0ace0b133f33e21b78ba6b7", "sha256": "d2f1e742d0c7838dd992bf5246e02b3b43a867bb25ee654047bdc6418ee05490" }, "downloads": -1, "filename": "planemo-0.24.2-py2.7.egg", "has_sig": false, "md5_digest": "5d23e400f0ace0b133f33e21b78ba6b7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 341947, "upload_time": "2016-04-25T13:11:50", "url": "https://files.pythonhosted.org/packages/86/20/e1d57bae39582352a1d1525888dc851413ad06968759481b5e17a74eadbb/planemo-0.24.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a24ee222881185cac264280a9020f63d", "sha256": "5a1ffd16bbf3f03bcfcb04e806c8b6a805b06d7b24fec87b236a390698e3120c" }, "downloads": -1, "filename": "planemo-0.24.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a24ee222881185cac264280a9020f63d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 217192, "upload_time": "2016-04-25T13:11:35", "url": "https://files.pythonhosted.org/packages/4f/0c/cd28a4b9d5aa20b48939a320e85f0bcfb91d2e50869af999d1b53e5081ca/planemo-0.24.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3985495fbd1257a3fb5fbc515ce3386", "sha256": "87ffce48763fb436d3d63823bfb6aac0d8be3c9f49a78e96bb2f21128098087e" }, "downloads": -1, "filename": "planemo-0.24.2.tar.gz", "has_sig": false, "md5_digest": "e3985495fbd1257a3fb5fbc515ce3386", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235333, "upload_time": "2016-04-25T13:12:14", "url": "https://files.pythonhosted.org/packages/23/7d/ec2e084852f00af34bc4fa3531bdd3fa928e127831658023726d45804519/planemo-0.24.2.tar.gz" } ], "0.25.0": [ { "comment_text": "", "digests": { "md5": "82b01a37f5fc190c72c89448f4a097e0", "sha256": "95cf9a41db81e5803d798602bd018980081012e3b1f437fd57ae4c8ddfe1ca55" }, "downloads": -1, "filename": "planemo-0.25.0-py2.7.egg", "has_sig": false, "md5_digest": "82b01a37f5fc190c72c89448f4a097e0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 364544, "upload_time": "2016-05-11T14:48:29", "url": "https://files.pythonhosted.org/packages/52/24/d361429baafb99356bc519eb621e82d6419d6081b0b5d9edfee63e1f5f67/planemo-0.25.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f9d696dcfd2cd35c32acbce983447012", "sha256": "033ca74c0a3609df1bd2325e3ea579648ea49464d5bccc352767af8ed69521a8" }, "downloads": -1, "filename": "planemo-0.25.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9d696dcfd2cd35c32acbce983447012", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 228633, "upload_time": "2016-05-11T14:45:49", "url": "https://files.pythonhosted.org/packages/c8/61/2c1e9fed5158dc4b13c5c7c0d92e11e31cf594bd8c5a68bd7f347412c6b0/planemo-0.25.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6a4bab2baad76f36e014fc03fda128c", "sha256": "1b4d7c3432e527abdded54bff0a16cc6367909bde61d212d69099dc8162470aa" }, "downloads": -1, "filename": "planemo-0.25.0.tar.gz", "has_sig": false, "md5_digest": "b6a4bab2baad76f36e014fc03fda128c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 246044, "upload_time": "2016-05-11T14:49:07", "url": "https://files.pythonhosted.org/packages/a9/63/ff4f383fbcd020c741c4474a067eac1844eea5cc58fd335aa68c4b081790/planemo-0.25.0.tar.gz" } ], "0.25.1": [ { "comment_text": "", "digests": { "md5": "a1c3538dff85e09692ce528abab9415f", "sha256": "fcb8e965af5b64befb03ccd80f9341ea15595ab024d853283fab9db0f070dd23" }, "downloads": -1, "filename": "planemo-0.25.1-py2.7.egg", "has_sig": false, "md5_digest": "a1c3538dff85e09692ce528abab9415f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 364691, "upload_time": "2016-05-12T02:35:23", "url": "https://files.pythonhosted.org/packages/50/b9/b7f36603976381bff2d52bc81e71476bd0b9cfefa202d3203dc5c1aebbb7/planemo-0.25.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e25e642d959743fceae3656ba185d433", "sha256": "37ad6c07134abdb50b93c39854c1213d117e070ce5bd8c8c8341174a0e6dd0f9" }, "downloads": -1, "filename": "planemo-0.25.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e25e642d959743fceae3656ba185d433", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 228742, "upload_time": "2016-05-12T02:35:15", "url": "https://files.pythonhosted.org/packages/bb/b9/f74af71e22b6d7ff4d7f218fc1bf27af4058fa315a56987d1133e4d12951/planemo-0.25.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70d6d3c51c58fc0c6b72683d1cc5ffbd", "sha256": "daa01654169f741ce0039be2b79a25f5ba830ad949c8190afc306c726c81049a" }, "downloads": -1, "filename": "planemo-0.25.1.tar.gz", "has_sig": false, "md5_digest": "70d6d3c51c58fc0c6b72683d1cc5ffbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 246179, "upload_time": "2016-05-12T02:35:33", "url": "https://files.pythonhosted.org/packages/da/66/a65b2e7eefdd802e9857ff887456058c5fc2d8341ca6b50979b0b1308cf4/planemo-0.25.1.tar.gz" } ], "0.26.0": [ { "comment_text": "", "digests": { "md5": "a4abf002eb301c558b5601040b486162", "sha256": "a15c48eca506d99c5840274c69afa22b7c9d85a6382489ee05ee4c2ccdcee2de" }, "downloads": -1, "filename": "planemo-0.26.0-py2.7.egg", "has_sig": false, "md5_digest": "a4abf002eb301c558b5601040b486162", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 423881, "upload_time": "2016-05-20T12:35:52", "url": "https://files.pythonhosted.org/packages/34/fb/206b9a1b049b487bb57b118310cf579b6654686905574fd6deb2c3179260/planemo-0.26.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "74406f99146ec296839c2b79aaf87019", "sha256": "91e471f91139df1d0f899187e792c747fa669efad986ffcd280c1649cc06f33b" }, "downloads": -1, "filename": "planemo-0.26.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74406f99146ec296839c2b79aaf87019", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 253717, "upload_time": "2016-05-20T12:35:19", "url": "https://files.pythonhosted.org/packages/9c/ea/a10ddd0dca6b9b4c883102f18e029b9617c6acefbaf67240225eb7a0f74f/planemo-0.26.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1854b92ee77c2f90870f0d3af7880e88", "sha256": "7210f68743ebcc69bbf6adccae8f15fd4e805708f3a2560385378630610e3ed2" }, "downloads": -1, "filename": "planemo-0.26.0.tar.gz", "has_sig": false, "md5_digest": "1854b92ee77c2f90870f0d3af7880e88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 264331, "upload_time": "2016-05-20T12:36:25", "url": "https://files.pythonhosted.org/packages/ed/c4/117ca288c579e95257e9aec355ef926da839760ad6cfdcb5592a104cdabf/planemo-0.26.0.tar.gz" } ], "0.27.0": [ { "comment_text": "", "digests": { "md5": "10619f125a116beb376c567118d34711", "sha256": "4e8acb1b450e2d9ef47d1ce0f6875221c5bd383dd9a752444e352d7b06a9bdf6" }, "downloads": -1, "filename": "planemo-0.27.0-py2.7.egg", "has_sig": false, "md5_digest": "10619f125a116beb376c567118d34711", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 436402, "upload_time": "2016-06-22T14:26:14", "url": "https://files.pythonhosted.org/packages/64/31/4951d5aa77cdfe1cfe5ed2a573817c51efaf5f8af90c666e0fa1054097ae/planemo-0.27.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "62d32634da050ac8c188ceeb063c5f18", "sha256": "2634ae8b9aad2d3567701072349d80e2b3d6aa5b1299b5dce10306692f390ef9" }, "downloads": -1, "filename": "planemo-0.27.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62d32634da050ac8c188ceeb063c5f18", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 259119, "upload_time": "2016-06-22T14:26:09", "url": "https://files.pythonhosted.org/packages/fa/d8/0aab029fd2073525d7259cdcd67e3959cef122a10d053e3eb60e63f69241/planemo-0.27.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44afe01124f2ae6f8e66acde110b08b3", "sha256": "07d4f84a02647cd8d11d1996a2a4294a8f4283cca8c9931294e98278eefcc811" }, "downloads": -1, "filename": "planemo-0.27.0.tar.gz", "has_sig": false, "md5_digest": "44afe01124f2ae6f8e66acde110b08b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 268983, "upload_time": "2016-06-22T14:26:19", "url": "https://files.pythonhosted.org/packages/a6/5f/83a6253a8798a61e2f69b25f3b71aa4603497982477c89df01082ad0e82f/planemo-0.27.0.tar.gz" } ], "0.28.0": [ { "comment_text": "", "digests": { "md5": "785e9b66f01c03a886046189658fbf48", "sha256": "7f1eea3ae6d878ffb6104370624dac5c142493bb81e9c69a424935db52fb07e9" }, "downloads": -1, "filename": "planemo-0.28.0-py2.7.egg", "has_sig": false, "md5_digest": "785e9b66f01c03a886046189658fbf48", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 438858, "upload_time": "2016-08-17T18:39:55", "url": "https://files.pythonhosted.org/packages/a1/b5/f9cc5143349dbde20433b10c3db5fb3b3b5b230fdbdf02ebd735aa909c31/planemo-0.28.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "15ccb7635a6679f023eadaa46ec0e36e", "sha256": "e69e8d43bfcfd2aed4bead54d027f8e862d75a309552863f7579a16f0ca2b1d9" }, "downloads": -1, "filename": "planemo-0.28.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "15ccb7635a6679f023eadaa46ec0e36e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 261582, "upload_time": "2016-08-17T18:39:45", "url": "https://files.pythonhosted.org/packages/83/14/847d9654b5445672db4203d9d74ac7f47a9b73cb1cdbe1ec4f2a2ceaa49c/planemo-0.28.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f868b9561d6dbcfc81107160ccca06c", "sha256": "824d49654029c9cabeab4d4d8b50ec7205afb93b7dcd79f7088d8ba2346004ce" }, "downloads": -1, "filename": "planemo-0.28.0.tar.gz", "has_sig": false, "md5_digest": "2f868b9561d6dbcfc81107160ccca06c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271519, "upload_time": "2016-08-17T18:39:58", "url": "https://files.pythonhosted.org/packages/fc/a7/269358f87f0201fd8222b6218c79bce106d8a528deeb1ed57d4f23367172/planemo-0.28.0.tar.gz" } ], "0.29.0": [ { "comment_text": "", "digests": { "md5": "308b5e5962baf95abc6e3e000356e23d", "sha256": "fc44d4d1b8ef84867e488097fe1bae314a06b0addbedb4972e3fa03080f6a802" }, "downloads": -1, "filename": "planemo-0.29.0-py2.7.egg", "has_sig": false, "md5_digest": "308b5e5962baf95abc6e3e000356e23d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 440313, "upload_time": "2016-08-19T14:54:31", "url": "https://files.pythonhosted.org/packages/f0/89/e8cb3d40d2cd9dcc26aeb0301299554f9775e3553f913358e445583bb768/planemo-0.29.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d73288e947e7e36c5ddc6885f690d195", "sha256": "da6523a580b34870e0aa8b5a73addcce721b4d808085c4009c38feb8e76bce95" }, "downloads": -1, "filename": "planemo-0.29.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d73288e947e7e36c5ddc6885f690d195", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 262537, "upload_time": "2016-08-19T14:54:28", "url": "https://files.pythonhosted.org/packages/7d/e2/48e75137bae55f9df9fa79597f1780d1043bf490d00b2f0be24d26ada71f/planemo-0.29.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fde185737ee26e6f9e1631ba1e216e7c", "sha256": "66ad5fa9efaa781909dd431ba85336982d8a906a0fca87cbf0db7fa6546bb8bc" }, "downloads": -1, "filename": "planemo-0.29.0.tar.gz", "has_sig": false, "md5_digest": "fde185737ee26e6f9e1631ba1e216e7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 272756, "upload_time": "2016-08-19T14:54:34", "url": "https://files.pythonhosted.org/packages/42/b2/034533e686a16ae17960495e48777b3c3ba9e469d2720c3b48e2ae9f475e/planemo-0.29.0.tar.gz" } ], "0.29.1": [ { "comment_text": "", "digests": { "md5": "b139b589b221b2b2255c93031e14666e", "sha256": "4bb609f1837f1a893e1463afbe6a9350a1ad7768d58288ab5e534a7a2555df39" }, "downloads": -1, "filename": "planemo-0.29.1-py2.7.egg", "has_sig": false, "md5_digest": "b139b589b221b2b2255c93031e14666e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 440350, "upload_time": "2016-08-19T19:44:30", "url": "https://files.pythonhosted.org/packages/fe/14/ca743aec4aa070b0d4a41c13821ac1bfdfc25872bdbbc487733a7958c4da/planemo-0.29.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cdd448b7eab9d6e819d303cef8e206b7", "sha256": "900797b0e34dd03f63dffaa0e3fa6bbfc4993d75038e529ee391f38b42d49368" }, "downloads": -1, "filename": "planemo-0.29.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cdd448b7eab9d6e819d303cef8e206b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 262609, "upload_time": "2016-08-19T19:44:26", "url": "https://files.pythonhosted.org/packages/93/94/2d695132ab627e7e41813e69033b41bd4a57ee0a0946e01ac421c1727f11/planemo-0.29.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06c8b488ed86e66fc88adcad551bb50a", "sha256": "6fcdb30ff64ff2d6ab53174db33df81d2fb416d596d1f05b6ac778df85c55c49" }, "downloads": -1, "filename": "planemo-0.29.1.tar.gz", "has_sig": false, "md5_digest": "06c8b488ed86e66fc88adcad551bb50a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 272827, "upload_time": "2016-08-19T19:44:35", "url": "https://files.pythonhosted.org/packages/79/41/4d65672ebe325f7c101366521d9b9d6d2b1e5b828953985da9509f8dd96f/planemo-0.29.1.tar.gz" } ], "0.3.0": [], "0.3.1": [ { "comment_text": "", "digests": { "md5": "4d5c5ba80821c31aaba1dda90311e553", "sha256": "ea8456666faa9e8c6a3709953566bcebab936cca6ee29b033591c470a898b4b3" }, "downloads": -1, "filename": "planemo-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "4d5c5ba80821c31aaba1dda90311e553", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 301912, "upload_time": "2015-02-16T00:29:32", "url": "https://files.pythonhosted.org/packages/f3/9f/1fcb50accc5102aff87d879715763d6bbba125c041ca0404dd0c386b5185/planemo-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a131a6cf1ce5c635c58007f20fc64902", "sha256": "d1aa571d8ef59eac9ea94feac866d49d05c3046952404b67c973c58e61a964ad" }, "downloads": -1, "filename": "planemo-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a131a6cf1ce5c635c58007f20fc64902", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 173594, "upload_time": "2015-02-16T00:32:24", "url": "https://files.pythonhosted.org/packages/91/af/bb959475eb30f7678c394ea8559719a2862038ad18285086ae73f3d88b30/planemo-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10133db1d358ad180f0ac15eadc1cf88", "sha256": "08cd29830d8b5ed32561e2dae0643d8237a6802ba160a4dbe5f8b7c7d9bd6f22" }, "downloads": -1, "filename": "planemo-0.3.1.tar.gz", "has_sig": false, "md5_digest": "10133db1d358ad180f0ac15eadc1cf88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150793, "upload_time": "2015-02-16T00:29:36", "url": "https://files.pythonhosted.org/packages/c0/73/7c82176caf3041b991b3aaf0f9916e858d0edbc1247ce1a477e4f9965c7a/planemo-0.3.1.tar.gz" } ], "0.30.0": [ { "comment_text": "", "digests": { "md5": "a43c60f9bab881a18baa86a8e9552c08", "sha256": "2e32860916d338d8e55f5743d55723dabe97d053184054f35dc8ee28c39493b2" }, "downloads": -1, "filename": "planemo-0.30.0-py2.7.egg", "has_sig": false, "md5_digest": "a43c60f9bab881a18baa86a8e9552c08", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 442198, "upload_time": "2016-09-01T13:31:55", "url": "https://files.pythonhosted.org/packages/b2/e6/9410368223a15a2a1528a5fac960915b9c0a1b980fb56ba1eaa1a5ea8ba1/planemo-0.30.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3d40498aa5484f34342545ef31e2e9c3", "sha256": "c9d65c9f6522420ef733d4f0cc3813667a53d1ecdfd8c0553f56e17a2c221812" }, "downloads": -1, "filename": "planemo-0.30.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d40498aa5484f34342545ef31e2e9c3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 264058, "upload_time": "2016-09-01T13:31:50", "url": "https://files.pythonhosted.org/packages/7d/6f/2e5a523d82f7e0f003c77a37505e88cc60d93f3dd0931dd54e1a737eb3a8/planemo-0.30.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be504a880cebec425ef233bd366a2b07", "sha256": "72a123ea0f55df25b4fc433ee5ed462b5fa45c3001343c27c0c9f47eed2dfc6b" }, "downloads": -1, "filename": "planemo-0.30.0.tar.gz", "has_sig": false, "md5_digest": "be504a880cebec425ef233bd366a2b07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274529, "upload_time": "2016-09-01T13:31:59", "url": "https://files.pythonhosted.org/packages/90/24/d1e20faaeeaf7b0dedf101a3a7d085229bad099e881ac68d291f40daf128/planemo-0.30.0.tar.gz" } ], "0.30.1": [ { "comment_text": "", "digests": { "md5": "9db11f73548d23cccfdc9afb9ec69740", "sha256": "28350ca976f077ba84b8613b91e1bc35dba613686466f59e9c06b767aa27341f" }, "downloads": -1, "filename": "planemo-0.30.1-py2.7.egg", "has_sig": false, "md5_digest": "9db11f73548d23cccfdc9afb9ec69740", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 443520, "upload_time": "2016-09-01T17:32:40", "url": "https://files.pythonhosted.org/packages/da/6f/f1e3f3f824f5c4272af9d1932b4d7f6db0e3df5b8643f0f9b2701089ed86/planemo-0.30.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fd825a6c47b4d8ed2a66f87d43abeac1", "sha256": "d48d5ac3641784740b1f6999e0b8effe9889f2ecaeae0210523792f422b06fbd" }, "downloads": -1, "filename": "planemo-0.30.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd825a6c47b4d8ed2a66f87d43abeac1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 264852, "upload_time": "2016-09-01T17:32:36", "url": "https://files.pythonhosted.org/packages/cc/6a/90a2012bf880d6aa05bd5385467eea8d88290efd8d1484254419528cd94c/planemo-0.30.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1434381f7917b5286447be7df0e09caa", "sha256": "debcdac758bdef61e2879663f6c0ad49a16429fd3c49d79134a5c735a3baf701" }, "downloads": -1, "filename": "planemo-0.30.1.tar.gz", "has_sig": false, "md5_digest": "1434381f7917b5286447be7df0e09caa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275197, "upload_time": "2016-09-01T17:33:09", "url": "https://files.pythonhosted.org/packages/49/58/3b156af059c07e3b0cc79dd33b8450cc2b312085a9ebc8bf7e398b980781/planemo-0.30.1.tar.gz" } ], "0.30.2": [ { "comment_text": "", "digests": { "md5": "8505d552010b84baec37493680dea690", "sha256": "1709f8e56da9f71b3ab05812c470a29bde1b252172612e08bfec78eb782a180c" }, "downloads": -1, "filename": "planemo-0.30.2-py2.7.egg", "has_sig": false, "md5_digest": "8505d552010b84baec37493680dea690", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 443545, "upload_time": "2016-09-01T19:43:37", "url": "https://files.pythonhosted.org/packages/9d/d6/a7286f01dd60ea155b86e371c2b3f5a4043baf3e902fb2f83b876aaf60d0/planemo-0.30.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7a789e02f3949562d8ccc3a86eb5d470", "sha256": "68efcb881ed98529d26481eb0c741b22db6de329a863ccb4203496ab615b5fda" }, "downloads": -1, "filename": "planemo-0.30.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a789e02f3949562d8ccc3a86eb5d470", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 264884, "upload_time": "2016-09-01T19:43:34", "url": "https://files.pythonhosted.org/packages/2e/63/25fb15d378e41b7962f6a1fa08693d4554624f324d6cd53572a1de2eefe6/planemo-0.30.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dca19fee6cd07a1592d44392aabb1e82", "sha256": "d077c72b95f7685d0a6c05a1614e06213fd24ae1114f485f1ff5723b9491e19d" }, "downloads": -1, "filename": "planemo-0.30.2.tar.gz", "has_sig": false, "md5_digest": "dca19fee6cd07a1592d44392aabb1e82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275242, "upload_time": "2016-09-01T19:43:40", "url": "https://files.pythonhosted.org/packages/d1/47/e1730564a52919708ee9001e95f7b2e89f27ba8a49ff8b2fc2e1fe50dbc4/planemo-0.30.2.tar.gz" } ], "0.31.0": [ { "comment_text": "", "digests": { "md5": "a9ba8c9faca25d91d5cfab50eec6ecb4", "sha256": "5c9f0f0835a4576f7af7e4ce844e953eb7d678eb1a989c27e811ed68177157d0" }, "downloads": -1, "filename": "planemo-0.31.0-py2.7.egg", "has_sig": false, "md5_digest": "a9ba8c9faca25d91d5cfab50eec6ecb4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 449461, "upload_time": "2016-09-06T04:41:36", "url": "https://files.pythonhosted.org/packages/68/e5/dd4b6f4021e22dac690e1a8f5b41a62e8ef38eeb88cb5cf720a47261790c/planemo-0.31.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8b55a5cfff478c13e4325a4bba22db93", "sha256": "c2423a4e19a95ab78c8758850b0bb3203bddbea8ac36c77531a6e099163d663c" }, "downloads": -1, "filename": "planemo-0.31.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b55a5cfff478c13e4325a4bba22db93", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 267203, "upload_time": "2016-09-06T04:41:28", "url": "https://files.pythonhosted.org/packages/41/7c/c90352464cc31b975346aec769c67ed826c4daf871d5789e0fcd5ff10404/planemo-0.31.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90b97f62cdd4db2a27def11c263e56f1", "sha256": "52a4bf711c82e120a37b7467bc8c6c0ec859a8e2be08eda95a5bfcfbf7d772fb" }, "downloads": -1, "filename": "planemo-0.31.0.tar.gz", "has_sig": false, "md5_digest": "90b97f62cdd4db2a27def11c263e56f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277059, "upload_time": "2016-09-06T04:41:40", "url": "https://files.pythonhosted.org/packages/63/b7/c9b96f7ab0f0eedaad919c39dcb44c1560f4ab897f80d0fe2a1d0843e9b1/planemo-0.31.0.tar.gz" } ], "0.32.0": [ { "comment_text": "", "digests": { "md5": "72ca477867a2b76e84d8cbc98370af03", "sha256": "a7128301878749b2af5eb3b8ef06770786c20f5fd64a99c8f85ba5cf1641488b" }, "downloads": -1, "filename": "planemo-0.32.0-py2.7.egg", "has_sig": false, "md5_digest": "72ca477867a2b76e84d8cbc98370af03", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 482758, "upload_time": "2016-09-16T20:58:59", "url": "https://files.pythonhosted.org/packages/49/a2/1fbb1e20129d5bfeb10d78561517fa31ccc1d9655dbeab6c66c7c675c189/planemo-0.32.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "651a42853adee2263807c13e476575e7", "sha256": "0f405aa8157e4c11f450f04067e6176bc6bf9dddd332813e33cab8e4ee6e439c" }, "downloads": -1, "filename": "planemo-0.32.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "651a42853adee2263807c13e476575e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 298978, "upload_time": "2016-09-16T20:58:56", "url": "https://files.pythonhosted.org/packages/f0/89/9fb6bafbf6d843471b67e9ce64b7a258a3251bedd74effc2fdab6c67419e/planemo-0.32.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "948e0b22fe2dbf450b494943bddb6e7c", "sha256": "1c67cddc0e1a3c1421bd4130675f0ce63d15ffcb943784f09bedf650240e944f" }, "downloads": -1, "filename": "planemo-0.32.0.tar.gz", "has_sig": false, "md5_digest": "948e0b22fe2dbf450b494943bddb6e7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 310539, "upload_time": "2016-09-16T20:59:02", "url": "https://files.pythonhosted.org/packages/03/13/d9325d1f61d8e124483ae6d36fba54faec8752057997a0aa2df39cc7bbe8/planemo-0.32.0.tar.gz" } ], "0.33.0": [ { "comment_text": "", "digests": { "md5": "8fd408fd84b1c86288f21762a4572377", "sha256": "6909dc71f71899fb74f98ee099ac46659f958bbb96e0e303becf30057e0cc22f" }, "downloads": -1, "filename": "planemo-0.33.0-py2.7.egg", "has_sig": false, "md5_digest": "8fd408fd84b1c86288f21762a4572377", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 515152, "upload_time": "2016-09-23T14:37:24", "url": "https://files.pythonhosted.org/packages/9d/8a/7fdbd52f07f2bef36036e0ddc5ebb048f53c1412a73e27d575d2e4ba6f37/planemo-0.33.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d79249ef008ab33b087b48c3a4e4c676", "sha256": "50be354faf56d236962d91036d9d5e3154e2a7f9d6702447f44c7361c9fe4679" }, "downloads": -1, "filename": "planemo-0.33.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d79249ef008ab33b087b48c3a4e4c676", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 313208, "upload_time": "2016-09-23T14:37:20", "url": "https://files.pythonhosted.org/packages/b3/8a/d625486d75e8bd932f045de7aeb8e9bf1b8eb3272b091f96b747e6c542dd/planemo-0.33.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4280fe5926f446867a8ea5c822f05e5", "sha256": "e25d4a49f59a19dc154b1b6c9524d8e382c01146ba2c619be19da62dac5fd0f6" }, "downloads": -1, "filename": "planemo-0.33.0.tar.gz", "has_sig": false, "md5_digest": "f4280fe5926f446867a8ea5c822f05e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321794, "upload_time": "2016-09-23T14:37:30", "url": "https://files.pythonhosted.org/packages/b4/79/566eecbf751dd10df3f33a65a548375865e1f1b7f437c8cb7ee475ba2119/planemo-0.33.0.tar.gz" } ], "0.33.1": [ { "comment_text": "", "digests": { "md5": "50ffbfc1d493184ba1534e98d1481a67", "sha256": "3f03b48dbde69e719eb77f09961283df074303de059084ccf70bb3feebf188c5" }, "downloads": -1, "filename": "planemo-0.33.1-py2.7.egg", "has_sig": false, "md5_digest": "50ffbfc1d493184ba1534e98d1481a67", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 513140, "upload_time": "2016-09-28T15:59:13", "url": "https://files.pythonhosted.org/packages/b0/58/9d74e74114d01f5f976561d7835942c07105e374063462a50df07f4497f6/planemo-0.33.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4fae0ff1d5cd6dccd16733bfa5fa1c34", "sha256": "a38916d61263b3f581cb676024d947c084323d5f2719ebc3a1484a987c525d45" }, "downloads": -1, "filename": "planemo-0.33.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fae0ff1d5cd6dccd16733bfa5fa1c34", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 312907, "upload_time": "2016-09-28T15:59:09", "url": "https://files.pythonhosted.org/packages/88/a1/bcb3611ba64dbffb5a07fabd109d7383e41c62346f324df8e03927eb7268/planemo-0.33.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7790f1718be87075e2ad86f89b1b7e1a", "sha256": "8b6679ac2fb39964925db3c0087179a3b6e2f8a876c3cb665b54c24df4b81a9f" }, "downloads": -1, "filename": "planemo-0.33.1.tar.gz", "has_sig": false, "md5_digest": "7790f1718be87075e2ad86f89b1b7e1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 322546, "upload_time": "2016-09-28T15:59:17", "url": "https://files.pythonhosted.org/packages/95/3f/d39888bed5af8a6e3735a40940b7b0d5396d63a7591c50eca22732615413/planemo-0.33.1.tar.gz" } ], "0.33.2": [ { "comment_text": "", "digests": { "md5": "88f392b3f487a8ce39fe452c8a34de67", "sha256": "42e0b0c0b277ec1451e13bde8d3fc8bb1904bea4bb92b25f653988cfe2bbe04e" }, "downloads": -1, "filename": "planemo-0.33.2-py2.7.egg", "has_sig": false, "md5_digest": "88f392b3f487a8ce39fe452c8a34de67", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 513201, "upload_time": "2016-09-28T16:02:23", "url": "https://files.pythonhosted.org/packages/5a/09/e924184aa906d09cfb049427975ef4967b73f30bc8f52e9190a890ab1526/planemo-0.33.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "87827d9306843560b20827c05e1317ad", "sha256": "7d9a7e1b06db236ea91cefb39ce0309308f4fa051de4c48770f9294dd4d9b272" }, "downloads": -1, "filename": "planemo-0.33.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87827d9306843560b20827c05e1317ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 313028, "upload_time": "2016-09-28T16:02:19", "url": "https://files.pythonhosted.org/packages/11/87/be7aceed86df863e784b033b41689932a737746fb8d3f20c5834f8afd65a/planemo-0.33.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "311fce18254a91196f71dfec9fb517c2", "sha256": "d1190a68277924e49ed21d6aa776fb44eba3772312ee6d4910d5f461758c23cb" }, "downloads": -1, "filename": "planemo-0.33.2.tar.gz", "has_sig": false, "md5_digest": "311fce18254a91196f71dfec9fb517c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 322765, "upload_time": "2016-09-28T16:02:28", "url": "https://files.pythonhosted.org/packages/d9/56/074bc99330b3f3903125d183d5382abe27552a113f1a0f8fa53dce416a3d/planemo-0.33.2.tar.gz" } ], "0.34.0": [ { "comment_text": "", "digests": { "md5": "edaab9bbf1031126901704dd0c14cde9", "sha256": "b86a630cbaffe6d79ff1dcce3cd791ca2944c8591e2298b3cf1e8e4f8f8f79cd" }, "downloads": -1, "filename": "planemo-0.34.0-py2.7.egg", "has_sig": false, "md5_digest": "edaab9bbf1031126901704dd0c14cde9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 520365, "upload_time": "2016-10-05T04:22:49", "url": "https://files.pythonhosted.org/packages/58/d2/71531d0dce73c90ebaeae171aa179e8a1705ff7ec5ddfd279fbd8957c8e1/planemo-0.34.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1156f48ddb85139a91beb173d7802cf0", "sha256": "b2efa3d3aff1a5c77fb40a427ecf60550816a84be688759f2fd584eb131a7162" }, "downloads": -1, "filename": "planemo-0.34.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1156f48ddb85139a91beb173d7802cf0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 316758, "upload_time": "2016-10-05T04:22:45", "url": "https://files.pythonhosted.org/packages/2c/ea/6c7c2856e4382ccb1fb2d68210fa02db05ae11b3a2a3e7a0a77ad4d81437/planemo-0.34.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d72b1cb9dc324cb9bf17171857eb3c6", "sha256": "78fe3caaba6c39e8be8e51ae52854ff1ad27deca2e18f03c92c77d3f03674d4d" }, "downloads": -1, "filename": "planemo-0.34.0.tar.gz", "has_sig": false, "md5_digest": "2d72b1cb9dc324cb9bf17171857eb3c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 326002, "upload_time": "2016-10-05T04:22:54", "url": "https://files.pythonhosted.org/packages/49/be/89533d490d6380e00edf31b95ea18594e2ed6d20a339118d3f4e4287f1ad/planemo-0.34.0.tar.gz" } ], "0.34.1": [ { "comment_text": "", "digests": { "md5": "f9b9b33265ebf6168b0bac7bd76696f7", "sha256": "067afdaa8f8295d9625ed4a796a7106ad9928ff86742648a8200fa4534202197" }, "downloads": -1, "filename": "planemo-0.34.1-py2.7.egg", "has_sig": false, "md5_digest": "f9b9b33265ebf6168b0bac7bd76696f7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 521173, "upload_time": "2016-10-12T16:17:58", "url": "https://files.pythonhosted.org/packages/50/df/420afcdfbf15046320a335ec558579aeae5a4fc05e7a7bc96fe4b07280e2/planemo-0.34.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "dff752681b56351c939b19da87b72b34", "sha256": "b3f21531e18cfeda3be35e39d4b50a049e0b5babfce85e86b560010dcfc18e4b" }, "downloads": -1, "filename": "planemo-0.34.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dff752681b56351c939b19da87b72b34", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 317294, "upload_time": "2016-10-12T16:17:54", "url": "https://files.pythonhosted.org/packages/2f/dc/c6267d081a6237dd7caeb0b81316a2199e8454852d6346e4552e46a12fd6/planemo-0.34.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cdb907816e915acaa873f61522166739", "sha256": "1e1ce853147eceed3f0c6b7ae44e0dc1491c955eded8c88fe32d3f1166ade12e" }, "downloads": -1, "filename": "planemo-0.34.1.tar.gz", "has_sig": false, "md5_digest": "cdb907816e915acaa873f61522166739", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 326618, "upload_time": "2016-10-12T16:18:01", "url": "https://files.pythonhosted.org/packages/99/3c/6f1004343bad1e79106eb47030a055b02655e08137f55036ca13f71f55cc/planemo-0.34.1.tar.gz" } ], "0.35.0": [ { "comment_text": "", "digests": { "md5": "4d2e608654d6f1747b3f630be9b4d334", "sha256": "54dd363d5b3fe7817934fef11f929f3bff58542a01d1dedf3c1b7d547b262f2e" }, "downloads": -1, "filename": "planemo-0.35.0-py2.7.egg", "has_sig": false, "md5_digest": "4d2e608654d6f1747b3f630be9b4d334", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 539722, "upload_time": "2016-11-14T13:44:00", "url": "https://files.pythonhosted.org/packages/32/7d/8e1a163977f8a5b2e9cc3c57e04dbb16b30a36f6f950e955d8f4d52a0196/planemo-0.35.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2a16cd203195a320cfd5db8c17312925", "sha256": "f1c602025e78c6fbc920c6a5aaa5ceee8e5fc10fbce5ae7e45a2aa4ace0086ca" }, "downloads": -1, "filename": "planemo-0.35.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a16cd203195a320cfd5db8c17312925", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 325711, "upload_time": "2016-11-14T13:43:57", "url": "https://files.pythonhosted.org/packages/ae/35/33eb3d8145cf604303ef9dc549cdaab5df1f2f4091ca74a65a12781162d2/planemo-0.35.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6897a6cf54413085749facf97e83247", "sha256": "bfe583065faba9a9a873175fa5cb32b657a473c06e94cf918dc4d24a133808df" }, "downloads": -1, "filename": "planemo-0.35.0.tar.gz", "has_sig": false, "md5_digest": "f6897a6cf54413085749facf97e83247", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 333280, "upload_time": "2016-11-14T13:44:03", "url": "https://files.pythonhosted.org/packages/00/0f/c94d8de69b03f711aef4d81f383c5f92b1ea86d96c5f104d2666d96bd5bb/planemo-0.35.0.tar.gz" } ], "0.36.0": [ { "comment_text": "", "digests": { "md5": "52b7f6e17c7c35c34153978c0382e303", "sha256": "a31f8b69fed6de3b57bf024ef5298134bf5c0c59b4020489e038f386fa907942" }, "downloads": -1, "filename": "planemo-0.36.0-py2.7.egg", "has_sig": false, "md5_digest": "52b7f6e17c7c35c34153978c0382e303", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 541206, "upload_time": "2016-12-12T03:36:04", "url": "https://files.pythonhosted.org/packages/78/f9/b788b1fbdb7d25bd2f0c0d4ac1f1b8dcd9f2457afa3c2850bc313a616e42/planemo-0.36.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "37753bd9a0a8bd004a38f60b8e79c730", "sha256": "14215cc82f3f578dc37a5327d825836e91009bf5bcf5bd1d7aae8249a9b23846" }, "downloads": -1, "filename": "planemo-0.36.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37753bd9a0a8bd004a38f60b8e79c730", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 327152, "upload_time": "2016-12-12T03:35:59", "url": "https://files.pythonhosted.org/packages/aa/48/087ea075f98de6cc628b419d6e5af91f9c4d1164f49282d773763eaf1b2f/planemo-0.36.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff2ee0fdcc0ce8ba4ee68ef300e80cf5", "sha256": "bdc6bd5c2ec6cc291397970651a517ba224954bc147b2abae4ee02d333c994da" }, "downloads": -1, "filename": "planemo-0.36.0.tar.gz", "has_sig": false, "md5_digest": "ff2ee0fdcc0ce8ba4ee68ef300e80cf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 334689, "upload_time": "2016-12-12T03:36:07", "url": "https://files.pythonhosted.org/packages/c0/92/3ee4195ef97b4ec8875bb7c7419ea4d89cc66d57808708aae151ae58eb24/planemo-0.36.0.tar.gz" } ], "0.36.1": [ { "comment_text": "", "digests": { "md5": "f02a6a25156f884cca427b0e9e3a5b43", "sha256": "50600b0ccf6171a4fad1ef9f0dee63d8b59372c7139ea26a02fcc843f7543552" }, "downloads": -1, "filename": "planemo-0.36.1-py2.7.egg", "has_sig": false, "md5_digest": "f02a6a25156f884cca427b0e9e3a5b43", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 541557, "upload_time": "2016-12-12T16:49:45", "url": "https://files.pythonhosted.org/packages/45/fd/2c665c798ac3abbe574956dad6fd6bb5e119f1bd99d3871daaf2fc682cda/planemo-0.36.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7eefbfb11ce10e3d222d83d6f53be90b", "sha256": "b430a0ef82a37c2bcd03be3ec17fc5b4d22bc8ad4fb863cab1594072255283c5" }, "downloads": -1, "filename": "planemo-0.36.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7eefbfb11ce10e3d222d83d6f53be90b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 327459, "upload_time": "2016-12-12T16:49:43", "url": "https://files.pythonhosted.org/packages/4b/22/c1c7d5eb52e745ea7308f3a48588db689687dc9a2cc26f65e852ef7a15fa/planemo-0.36.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f2edfb5e69cc9d00fc6cdcabd0d1c8d", "sha256": "3292919cc7474de5e27dd95bb9fbc45949800741c56ce310ed284e1f03d9f329" }, "downloads": -1, "filename": "planemo-0.36.1.tar.gz", "has_sig": false, "md5_digest": "6f2edfb5e69cc9d00fc6cdcabd0d1c8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 335109, "upload_time": "2016-12-12T16:49:48", "url": "https://files.pythonhosted.org/packages/ed/93/d467d638cc0cb3bd7912ee59fe15a16355fb5a32a95becb69cdfc7ce3e09/planemo-0.36.1.tar.gz" } ], "0.37.0": [ { "comment_text": "", "digests": { "md5": "c703810a9176e2a3dfee990be0f20e12", "sha256": "da7486f7c7bd803e7d2b69a4124137c2e2382a8962284d8498d0ca676d88f6da" }, "downloads": -1, "filename": "planemo-0.37.0-py2.7.egg", "has_sig": false, "md5_digest": "c703810a9176e2a3dfee990be0f20e12", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 555293, "upload_time": "2017-01-25T16:50:09", "url": "https://files.pythonhosted.org/packages/7e/3b/528213002d1ce1781efd77d1b9d103b10d49e5f8098152a3027c21e3d82e/planemo-0.37.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "73839ff7e010b1927f8014a8ecb98433", "sha256": "f82397cd27e003e1c8623671c52b569b5df4341470bdb482883aa5e1127c5c13" }, "downloads": -1, "filename": "planemo-0.37.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73839ff7e010b1927f8014a8ecb98433", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 334472, "upload_time": "2017-01-25T16:50:06", "url": "https://files.pythonhosted.org/packages/a1/4a/f339d17308cdf952b23fa4180d5d81c5fafb4e5f29589f4ae4f729c14377/planemo-0.37.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0600158e9094c57b3f9a5f37288e013", "sha256": "9bb506adeda293a88de9886ab807edf7c71b2fef2a073e282ed50330b733e599" }, "downloads": -1, "filename": "planemo-0.37.0.tar.gz", "has_sig": false, "md5_digest": "b0600158e9094c57b3f9a5f37288e013", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 341902, "upload_time": "2017-01-25T16:50:11", "url": "https://files.pythonhosted.org/packages/c2/d5/456a851136f228cfbb18134f34c5e056b5127190fe3db9abbc10146d1569/planemo-0.37.0.tar.gz" } ], "0.38.0": [ { "comment_text": "", "digests": { "md5": "f7eca5503977ba44a67f32de96cd118f", "sha256": "093e064bca6f50da2c124f0b3b5d9fd327afe70524c9bca8784c9b0b2dcf3586" }, "downloads": -1, "filename": "planemo-0.38.0-py2.7.egg", "has_sig": false, "md5_digest": "f7eca5503977ba44a67f32de96cd118f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 557859, "upload_time": "2017-02-06T18:06:40", "url": "https://files.pythonhosted.org/packages/f0/80/0801ec32e390050708a69a0a4c614be5d61c109a2386de4ab665ff6c86ca/planemo-0.38.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fc6582d6f9847c560d6b082b42fecc9a", "sha256": "e57e61e9d82c1f22c20d4d8b915a5e8a5c03219f73086ee3c6df753bd8ecc734" }, "downloads": -1, "filename": "planemo-0.38.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc6582d6f9847c560d6b082b42fecc9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336095, "upload_time": "2017-02-06T18:06:38", "url": "https://files.pythonhosted.org/packages/31/e9/fd683df2bac445ac53fad427584c3efe3ff2f879f16c80dfc47d39c50b40/planemo-0.38.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d193e676b00971e947aef602065edaca", "sha256": "38a57e6c8380f86b4f71453ff97cf2929df0520e85be677bbafb991cd8d308f3" }, "downloads": -1, "filename": "planemo-0.38.0.tar.gz", "has_sig": false, "md5_digest": "d193e676b00971e947aef602065edaca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 343600, "upload_time": "2017-02-06T18:06:43", "url": "https://files.pythonhosted.org/packages/fe/ef/c44b401746d7502d5be903045bcbbcf0a733fd12a818deeff2706d40d3b4/planemo-0.38.0.tar.gz" } ], "0.38.1": [ { "comment_text": "", "digests": { "md5": "f655f5a5fe439aae77f0657e4c9b4af3", "sha256": "2458899f918f8b397d3be13a04fa9f4542da107d4fc4696df963f88695deab46" }, "downloads": -1, "filename": "planemo-0.38.1-py2.7.egg", "has_sig": false, "md5_digest": "f655f5a5fe439aae77f0657e4c9b4af3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 557881, "upload_time": "2017-02-07T01:28:05", "url": "https://files.pythonhosted.org/packages/f6/85/502984f5586e6ff71051749102cf9a6d51d3772731073f28045b6944d3c7/planemo-0.38.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5460ee193a4e019650dac93140df85a9", "sha256": "e9b1c025ae7bd9aa3e32da9d5a87d7dcc8c7d5ee431a7bc78a4867cc645a2cf1" }, "downloads": -1, "filename": "planemo-0.38.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5460ee193a4e019650dac93140df85a9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336158, "upload_time": "2017-02-07T01:28:02", "url": "https://files.pythonhosted.org/packages/da/81/bc9f852235b3ed489640dd7ef22ecabef0ad521abb6042f47e65f2b12e2f/planemo-0.38.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80ea460b30f2bff2357dbd05bca526c4", "sha256": "0dcf8e6d8cc32d0e02e86ee0b5643e5e2e2a2e79c2568f554f39530e53d8c316" }, "downloads": -1, "filename": "planemo-0.38.1.tar.gz", "has_sig": false, "md5_digest": "80ea460b30f2bff2357dbd05bca526c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 343692, "upload_time": "2017-02-07T01:28:07", "url": "https://files.pythonhosted.org/packages/d9/b2/53a8584f999a68af35c928df02b331a46759559b647689252b331531f297/planemo-0.38.1.tar.gz" } ], "0.39.0": [ { "comment_text": "", "digests": { "md5": "0012c0fbc48efa46357547c2e82a7185", "sha256": "507f3afee5396c4c2a20a0ff598c64cb3ec8f21b954bb4f44bc2b5a608fcb6ad" }, "downloads": -1, "filename": "planemo-0.39.0-py2.7.egg", "has_sig": false, "md5_digest": "0012c0fbc48efa46357547c2e82a7185", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 570590, "upload_time": "2017-03-16T00:29:38", "url": "https://files.pythonhosted.org/packages/fe/91/466e57a62aa9263e849f1124b175da2a220ba2e62db01f23aca191f31a5f/planemo-0.39.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "020e83411a92d337cc6e1a4a44b9625a", "sha256": "81427d1147f752f77b801a218dd150b3779fb516664b3f6486851802ef9c2dbe" }, "downloads": -1, "filename": "planemo-0.39.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "020e83411a92d337cc6e1a4a44b9625a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 342694, "upload_time": "2017-03-16T00:29:32", "url": "https://files.pythonhosted.org/packages/18/9a/85b0d27fe8c7f7e88512452982b7485e2f539dc40bc1c913c38df25ab413/planemo-0.39.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "719474a9e83703a07d3bb327aade1b0d", "sha256": "319f2514bf9aec8478fb74508867bc5ecf9b67cedbe132138b39a3e9252de1b6" }, "downloads": -1, "filename": "planemo-0.39.0.tar.gz", "has_sig": false, "md5_digest": "719474a9e83703a07d3bb327aade1b0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 351537, "upload_time": "2017-03-16T00:29:40", "url": "https://files.pythonhosted.org/packages/ba/56/9a66de4c799a46a1c7d7072b3f1c9541b3bd4777c0f404905e64771fad60/planemo-0.39.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "2b814c5a17602638ebff212218dabc84", "sha256": "b186c519d734543bd6e559a82d06970a367a52e7e016a365e66d952590257112" }, "downloads": -1, "filename": "planemo-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "2b814c5a17602638ebff212218dabc84", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 188559, "upload_time": "2015-02-16T14:40:43", "url": "https://files.pythonhosted.org/packages/dd/2b/16de98ae2b75275971e58f700395fb6db75122cfada905d1a2001a3e175c/planemo-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b0ece56f0064eebac4582b5ea7f62498", "sha256": "72e3d99e51f83819e6ccc9aa5c39ec6c0dfd179b8d34adef31294b5818360bf2" }, "downloads": -1, "filename": "planemo-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0ece56f0064eebac4582b5ea7f62498", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 198429, "upload_time": "2015-02-16T14:40:37", "url": "https://files.pythonhosted.org/packages/8e/ed/8a5cf4d480979376e1adb58669b5a64d17df7d3382ce9ad3f3a731472585/planemo-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af11686ac9a3d64ef067f84e4a348800", "sha256": "4a66b82bc3ab229280b1457c51b7518aafc2e525bfb65e4ed7babe34503415c7" }, "downloads": -1, "filename": "planemo-0.4.0.tar.gz", "has_sig": false, "md5_digest": "af11686ac9a3d64ef067f84e4a348800", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162808, "upload_time": "2015-02-16T14:40:47", "url": "https://files.pythonhosted.org/packages/f2/47/ab54583d5a4cb3ed8d529537bc829707df87574287c36e1224e7f9ceaa93/planemo-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "09e551cc962ee0bb1cf4f0fb78d2ed74", "sha256": "eaad3c15808164a69b0e5cc8c51c2f6dd9375373afb699cac91acadf745e08ce" }, "downloads": -1, "filename": "planemo-0.4.1-py2.7.egg", "has_sig": false, "md5_digest": "09e551cc962ee0bb1cf4f0fb78d2ed74", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 188623, "upload_time": "2015-02-16T15:30:39", "url": "https://files.pythonhosted.org/packages/bd/ac/4003d0d7c4652dbf707fcf70b7e7da8f3009fe59e4a5501d255a5985c830/planemo-0.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "48b400fc4f7ee5f2b285af53c4802223", "sha256": "8ccfcf16e09d54e31880e9e8cbc902e16a5463feee4c5be6def24998b5883c0d" }, "downloads": -1, "filename": "planemo-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48b400fc4f7ee5f2b285af53c4802223", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 198543, "upload_time": "2015-02-16T15:30:32", "url": "https://files.pythonhosted.org/packages/d8/c3/9a68b3a635e96c63595fa7ee701a85b33ac4ced05fd4f0f09acd187c0dd1/planemo-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7eeaf40028fa6ccd7f47c7ead691c89e", "sha256": "5d30c825c55267678fdb73157c206aacc88f816645b1f7b66d4c9140e9611a19" }, "downloads": -1, "filename": "planemo-0.4.1.tar.gz", "has_sig": false, "md5_digest": "7eeaf40028fa6ccd7f47c7ead691c89e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163068, "upload_time": "2015-02-16T15:30:43", "url": "https://files.pythonhosted.org/packages/38/f0/398b404396aa1b05f610366443b1304fa7c973698232d47f261873be65e3/planemo-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "a07750b914018558a0b4288dd20338db", "sha256": "ac9e24a98b4eb0afaf9f0b37c94397cbd5315db6c013efc9868a2f7433022f92" }, "downloads": -1, "filename": "planemo-0.4.2-py2.7.egg", "has_sig": false, "md5_digest": "a07750b914018558a0b4288dd20338db", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 295530, "upload_time": "2015-02-22T03:01:16", "url": "https://files.pythonhosted.org/packages/b8/4d/a4aca830b25f962d0a15491b7eb4f74c2cc1145fdcae140c3ff4f0e6c6f6/planemo-0.4.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5c35296bca7f22e4bebce0ca89d961ae", "sha256": "10b9b42fc6f3eb348d39526d72de050f2583ef50923aac12a0d468c91c6a70af" }, "downloads": -1, "filename": "planemo-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5c35296bca7f22e4bebce0ca89d961ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 177283, "upload_time": "2015-02-22T03:01:18", "url": "https://files.pythonhosted.org/packages/4a/22/da21255a1d1fa23efdb32c64888806bc698b7f4061982e16fa0be6158e5c/planemo-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf5347d5d8b31f50db067094a6c77d5b", "sha256": "0c9615fa288a01176690420d2b56cea2ba5ed62e255732be0051ef05c5652b1c" }, "downloads": -1, "filename": "planemo-0.4.2.tar.gz", "has_sig": false, "md5_digest": "bf5347d5d8b31f50db067094a6c77d5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156186, "upload_time": "2015-02-22T03:01:21", "url": "https://files.pythonhosted.org/packages/0f/d7/239ec8c78726981c9ad0782f9f47f20cf53832e5ea521d7eaca96907acb2/planemo-0.4.2.tar.gz" } ], "0.40.0": [ { "comment_text": "", "digests": { "md5": "78f7eeaac75be4117bf0ddc19c98f3c9", "sha256": "c21f8c4d8ad9adee430e934de439a3f12d76cd53b827f84a61a48a222f1018be" }, "downloads": -1, "filename": "planemo-0.40.0-py2.7.egg", "has_sig": false, "md5_digest": "78f7eeaac75be4117bf0ddc19c98f3c9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 570996, "upload_time": "2017-03-16T18:17:09", "url": "https://files.pythonhosted.org/packages/d0/6a/ec2c5e92810ad6b709d9e38d76d4b865bb191a5347bd0ec5dcdccd132be2/planemo-0.40.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "72ee0904a576630a721374db7a0ae0fb", "sha256": "d4717c6d2005bba8da4ec73bcefe0df4414e89d372c47f25af160fe7df88b0e7" }, "downloads": -1, "filename": "planemo-0.40.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72ee0904a576630a721374db7a0ae0fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 343073, "upload_time": "2017-03-16T18:17:05", "url": "https://files.pythonhosted.org/packages/96/51/57423c764f0376dcf7b1280185a022e40223574cdd901ac493de0a969ca7/planemo-0.40.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f1413692ef5e5d665885d51afb7ecf8", "sha256": "3a5d3e2d00f40c80361e4acc28cc61c66141370056d39f73d14df7d62094ded8" }, "downloads": -1, "filename": "planemo-0.40.0.tar.gz", "has_sig": false, "md5_digest": "4f1413692ef5e5d665885d51afb7ecf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352118, "upload_time": "2017-03-16T18:17:12", "url": "https://files.pythonhosted.org/packages/5e/7e/d7f48cbacefdbdb91719606250e4de2e159cb8c5a5e75bdb1d746555bbdd/planemo-0.40.0.tar.gz" } ], "0.40.1": [ { "comment_text": "", "digests": { "md5": "f403bebb4e411e9ff4ea77b3712fd232", "sha256": "61fed68dd32180a60423b12deb16261ef2b7e4d71c41316a39d575130ddaa4a7" }, "downloads": -1, "filename": "planemo-0.40.1-py2.7.egg", "has_sig": false, "md5_digest": "f403bebb4e411e9ff4ea77b3712fd232", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 571642, "upload_time": "2017-05-03T17:44:35", "url": "https://files.pythonhosted.org/packages/1b/f7/7e8185ff3b369ae6a9687e23435b16bec357df3755bbafd1fbc103c17a6c/planemo-0.40.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d1ce7046a50d7179b4f28ef0d8d73a09", "sha256": "e21a3c03d3cc3280415975c1094b8be85d6d8df1cd096fad3512387fa27c208a" }, "downloads": -1, "filename": "planemo-0.40.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1ce7046a50d7179b4f28ef0d8d73a09", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 343572, "upload_time": "2017-05-03T17:44:32", "url": "https://files.pythonhosted.org/packages/39/41/7fa35c37d4de5d4ca4fe0b9a0f3e9cccdcef31e40669291db5553da11bcb/planemo-0.40.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1d131763c3bd9ec70fce594db59d9e8", "sha256": "05d79aa8909ecf2f78214811c6da509e0295e03eeb73f2f58c31eb9be5148ba5" }, "downloads": -1, "filename": "planemo-0.40.1.tar.gz", "has_sig": false, "md5_digest": "f1d131763c3bd9ec70fce594db59d9e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352810, "upload_time": "2017-05-03T17:44:38", "url": "https://files.pythonhosted.org/packages/6f/a5/5e6f0521c926e3b41a868043a9f2157f5c646a03ff79a33b89f3aa0b81e9/planemo-0.40.1.tar.gz" } ], "0.41.0": [ { "comment_text": "", "digests": { "md5": "fa60ae7f77247c1c79dbe66995d6a8a1", "sha256": "5695ea742fcdeb0dfc65e366f2df4c3add77873549608b795b4c0d76ab5f430c" }, "downloads": -1, "filename": "planemo-0.41.0-py2.7.egg", "has_sig": false, "md5_digest": "fa60ae7f77247c1c79dbe66995d6a8a1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 579277, "upload_time": "2017-06-05T19:01:23", "url": "https://files.pythonhosted.org/packages/14/ce/d46e3f190a7ea5b7fa8a9a789f3efe1ad8df376836b94194d9a4842921de/planemo-0.41.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e3afddd13269bf21c09f18cd11bcd9bb", "sha256": "a537efe43e399be4ae34b55c301e32d72898bb7b65076f3dde4c8e714b39aad6" }, "downloads": -1, "filename": "planemo-0.41.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3afddd13269bf21c09f18cd11bcd9bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 346876, "upload_time": "2017-06-05T19:01:20", "url": "https://files.pythonhosted.org/packages/e5/f3/fdf5dfffe4a1d66ac0b9adaa8727710f89cd3993abc579cb8d096501d07a/planemo-0.41.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "380b64b2792762032960c7588d9e8432", "sha256": "39a09dd7c244ad309a78e6527914c9a4001666a790ca44fccb0d6cbd7e64dd8d" }, "downloads": -1, "filename": "planemo-0.41.0.tar.gz", "has_sig": false, "md5_digest": "380b64b2792762032960c7588d9e8432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 355532, "upload_time": "2017-06-05T19:01:26", "url": "https://files.pythonhosted.org/packages/d7/41/95ce150982b4e202eebc24cf92740ce85bbfe5b5c129a5ecf4777d3ef07f/planemo-0.41.0.tar.gz" } ], "0.42.0": [ { "comment_text": "", "digests": { "md5": "6feb1f9dd8aa6ed8d54cf0738ad79fb1", "sha256": "424854e74bbff817be5361a4edcc8d0b664d0d18520867cef5796f740ea6912d" }, "downloads": -1, "filename": "planemo-0.42.0-py2.7.egg", "has_sig": false, "md5_digest": "6feb1f9dd8aa6ed8d54cf0738ad79fb1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 581839, "upload_time": "2017-06-15T17:49:45", "url": "https://files.pythonhosted.org/packages/fb/ed/60a0abe8e9de4bbdbf58d7ebb44c681ccc424eaa9afb26b0877bbcabb197/planemo-0.42.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "673952a23bdcf2a20cac4c385534b118", "sha256": "d8d1d309d98a99b2a99a8b2db4837dfa5d3d812f71deca2f08b78b82fb942115" }, "downloads": -1, "filename": "planemo-0.42.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "673952a23bdcf2a20cac4c385534b118", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 348920, "upload_time": "2017-06-15T17:49:36", "url": "https://files.pythonhosted.org/packages/5a/32/5f6fdacd95a0b8fd7f1038f532a8729d43c6e2914468c74301db7079f717/planemo-0.42.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff31d821fb806badf4060c7fc3c65b0a", "sha256": "8ebf4f270746aa32699564c09f0cc6c3bffb5e81aee42cf8f39664b7538c23f1" }, "downloads": -1, "filename": "planemo-0.42.0.tar.gz", "has_sig": false, "md5_digest": "ff31d821fb806badf4060c7fc3c65b0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 357731, "upload_time": "2017-06-15T17:49:51", "url": "https://files.pythonhosted.org/packages/b5/9a/4b4dccb5b1068773031a25487a18bbccc7a654baa032d22bde0e3988a110/planemo-0.42.0.tar.gz" } ], "0.42.1": [ { "comment_text": "", "digests": { "md5": "e085555468ae40da93742a1e24d3ed75", "sha256": "e601a762e3b3dad79a07a5abc91acd9b15f1fa4798067f2313a659ee9ff3c4da" }, "downloads": -1, "filename": "planemo-0.42.1-py2.7.egg", "has_sig": false, "md5_digest": "e085555468ae40da93742a1e24d3ed75", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 582066, "upload_time": "2017-06-16T18:14:45", "url": "https://files.pythonhosted.org/packages/dc/34/4055ae14d0a94d7ef3c90076d5eab2cc510171b813ed3a1782a304f249c7/planemo-0.42.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "134437e28cab4ac538ea84bbd5dfbfdd", "sha256": "b81831ab2e1caf379787551a4351b022a417f973e66ed762de789f78956e2df2" }, "downloads": -1, "filename": "planemo-0.42.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "134437e28cab4ac538ea84bbd5dfbfdd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 349281, "upload_time": "2017-06-16T18:14:42", "url": "https://files.pythonhosted.org/packages/a9/bd/bc28f447e462b5c43bd97e0ea76e4e999f30f478592e93987387663a79ae/planemo-0.42.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e6102ee70016cdccec98e7364f4fdc1", "sha256": "b5584e3f52c6e3a57cd75b25081a5bcaded9bacd8ab842c959d29194fa3cb395" }, "downloads": -1, "filename": "planemo-0.42.1.tar.gz", "has_sig": false, "md5_digest": "8e6102ee70016cdccec98e7364f4fdc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358230, "upload_time": "2017-06-16T18:14:50", "url": "https://files.pythonhosted.org/packages/7c/20/493a5f59578e45cd6f9248ea7a5c6a7cfc9993699988e095620f98c41beb/planemo-0.42.1.tar.gz" } ], "0.43.0": [ { "comment_text": "", "digests": { "md5": "c322b86740d9beb04156b463b066c2e9", "sha256": "c02ed8d28df345cf09f49287b286a2308589a4e51004210c9f7df90b72b2fda7" }, "downloads": -1, "filename": "planemo-0.43.0-py2.7.egg", "has_sig": false, "md5_digest": "c322b86740d9beb04156b463b066c2e9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 582139, "upload_time": "2017-06-22T11:04:22", "url": "https://files.pythonhosted.org/packages/3d/bc/ff69a9fc0a01bb047f03af62a0c27b460278339c4ed84be96f2bf41b089d/planemo-0.43.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "834097586def9790615fb1cdc2cb2a09", "sha256": "e8487abbc99ceee08682d1d2efc356da4ee84cae4fac1d4da038d6aa53b8a788" }, "downloads": -1, "filename": "planemo-0.43.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "834097586def9790615fb1cdc2cb2a09", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 349494, "upload_time": "2017-06-22T11:04:20", "url": "https://files.pythonhosted.org/packages/86/27/31423f18df2cfb81285b1f8efb36ae58ded5a07aad3626cf3a827069916f/planemo-0.43.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3404a9965483e161cb998cfc0d7134f9", "sha256": "c3cc85bcfcf42a614609fdd1ddd5b340581113125eb9cad56a51b2c0afa6ac25" }, "downloads": -1, "filename": "planemo-0.43.0.tar.gz", "has_sig": false, "md5_digest": "3404a9965483e161cb998cfc0d7134f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358526, "upload_time": "2017-06-22T11:04:25", "url": "https://files.pythonhosted.org/packages/7d/8c/10c73110bee6a4e042bc1a9506418cb0f2edfb8d9b2f1608f757dc6ed88c/planemo-0.43.0.tar.gz" } ], "0.44.0": [ { "comment_text": "", "digests": { "md5": "b94f2828a683b078cd2691c708fc6b19", "sha256": "873b41320e413cbeb76040d88aceacb683481985736417b5522885e63ef81bad" }, "downloads": -1, "filename": "planemo-0.44.0-py2.7.egg", "has_sig": false, "md5_digest": "b94f2828a683b078cd2691c708fc6b19", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 584225, "upload_time": "2017-06-22T18:23:04", "url": "https://files.pythonhosted.org/packages/2a/c3/105cd062f2624c16118e1219427c965f140a5881fa95b0f9f6179764d090/planemo-0.44.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5fc2981e7f31d4e06cb01dba3e0d243a", "sha256": "bb752b45c38bf4cfad9217d60a3b1bd31c3183c9568486072196498c87e066dd" }, "downloads": -1, "filename": "planemo-0.44.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5fc2981e7f31d4e06cb01dba3e0d243a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 350566, "upload_time": "2017-06-22T18:23:01", "url": "https://files.pythonhosted.org/packages/77/f9/9b820a2bd0917932a49a413441a9faac6bc3e7f5763656cfa60949600054/planemo-0.44.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94a9a8d2a0653c086291ec49fe490294", "sha256": "57eb4494017547328d44b066c4ffd64cdfb5d7c76e158e71845a1cc6018ad667" }, "downloads": -1, "filename": "planemo-0.44.0.tar.gz", "has_sig": false, "md5_digest": "94a9a8d2a0653c086291ec49fe490294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359463, "upload_time": "2017-06-22T18:23:07", "url": "https://files.pythonhosted.org/packages/b7/2a/74271fcd8b09653d07fa6aab316779145c9dfdcacb37a9c922be09e622ba/planemo-0.44.0.tar.gz" } ], "0.45.0": [ { "comment_text": "", "digests": { "md5": "056120c9ebed82f736993b0dee8bdc6b", "sha256": "794738e1bdc6a1e6bd7eecfe9a1d11ff0163e5551cf5175b4666a42b534ce7df" }, "downloads": -1, "filename": "planemo-0.45.0-py2.7.egg", "has_sig": false, "md5_digest": "056120c9ebed82f736993b0dee8bdc6b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 588600, "upload_time": "2017-09-06T18:01:07", "url": "https://files.pythonhosted.org/packages/bb/ab/11a0d5d5dd1f0c2098da4a67add6c00ab0531dd0f8da1fa23a2c357ef7e8/planemo-0.45.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6dcb06a39cc5a36d5de07e30dabcf29d", "sha256": "047fa9dc2c34fd8e1c530b8f5e1da637cfaa81ec1d4996a194600681ff9f2147" }, "downloads": -1, "filename": "planemo-0.45.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6dcb06a39cc5a36d5de07e30dabcf29d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 352780, "upload_time": "2017-09-06T18:01:04", "url": "https://files.pythonhosted.org/packages/e9/af/70b776740530c54403f3c6a32122154b2a0f6f3b53558e8324bab165f59c/planemo-0.45.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f4c2e7fc781f97461ddbafb9be1afe9", "sha256": "3d44595c068eeb83b766ec819c1c53395fc7a15167a932f705a0bf38d1e177c7" }, "downloads": -1, "filename": "planemo-0.45.0.tar.gz", "has_sig": false, "md5_digest": "0f4c2e7fc781f97461ddbafb9be1afe9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 361966, "upload_time": "2017-09-06T18:01:10", "url": "https://files.pythonhosted.org/packages/b3/ce/387beabe4976f1161ab6d0d748655f6830072bbbf2075623d8dde795706c/planemo-0.45.0.tar.gz" } ], "0.46.0": [ { "comment_text": "", "digests": { "md5": "d314fdde50a9ea248a79f1b3a380e47c", "sha256": "24cd9b4898b02fe1f82b2bd665be490f22eb4fc1ec6000d0a4ccacba765c434d" }, "downloads": -1, "filename": "planemo-0.46.0-py2.7.egg", "has_sig": false, "md5_digest": "d314fdde50a9ea248a79f1b3a380e47c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 589482, "upload_time": "2017-09-15T23:53:45", "url": "https://files.pythonhosted.org/packages/80/05/431c7c349fcc73e2b6c259a09ea756805ffce8912d32f0beb58a2776cfda/planemo-0.46.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "eec20d049fb651e97dff81b6227d4edd", "sha256": "02daabb51dc9a096f3726d8dbe6c4cf16e9bffd880a0e62d497d3ea8da58c0d5" }, "downloads": -1, "filename": "planemo-0.46.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eec20d049fb651e97dff81b6227d4edd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 353582, "upload_time": "2017-09-15T23:53:41", "url": "https://files.pythonhosted.org/packages/78/e0/99d0fc4a80ba22d19d5cfa35e6d70b5af4ca1272d6a7750298506611ebad/planemo-0.46.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90a2fe7c703c0636fdf8e68f816c73d8", "sha256": "624d864e89308d4785f5018563e6713fec580083cd9d4029e855a4c2c9c08614" }, "downloads": -1, "filename": "planemo-0.46.0.tar.gz", "has_sig": false, "md5_digest": "90a2fe7c703c0636fdf8e68f816c73d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 363252, "upload_time": "2017-09-15T23:53:50", "url": "https://files.pythonhosted.org/packages/f6/9b/2315e5b5cf8230b3a019ddf0a10fcdc41a61ab2665afc6b03ec4207fea74/planemo-0.46.0.tar.gz" } ], "0.46.1": [ { "comment_text": "", "digests": { "md5": "fddd46df69a3a949a63e70e32ed2b6ee", "sha256": "899912ba85c22ccbaa391ff8f5677ee216c5aa2d060397998c6c2e4414bc742c" }, "downloads": -1, "filename": "planemo-0.46.1-py2.7.egg", "has_sig": false, "md5_digest": "fddd46df69a3a949a63e70e32ed2b6ee", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 592922, "upload_time": "2017-09-26T16:29:27", "url": "https://files.pythonhosted.org/packages/04/e1/91f63bfeb0aa5d0cbcf24b3f8f49fa41fc7ae5cf5849388b182e6deab466/planemo-0.46.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "466fb2b5b67548745b5e3f4fefca8834", "sha256": "e55ed6dee7e432d322ddee39b5b26f100d9da15741b19a5e32980057f8a3d217" }, "downloads": -1, "filename": "planemo-0.46.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "466fb2b5b67548745b5e3f4fefca8834", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 354910, "upload_time": "2017-09-26T16:29:22", "url": "https://files.pythonhosted.org/packages/48/5f/667a1f30a1538e09391cd79d91a2b46c104ee2950aa231457f107508838a/planemo-0.46.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf67bdb51bd3ea9a843468b8818026ee", "sha256": "887572fd762dadc393efd9d3847891fe2209c0d5527017c32f587b7a5118a48a" }, "downloads": -1, "filename": "planemo-0.46.1.tar.gz", "has_sig": false, "md5_digest": "bf67bdb51bd3ea9a843468b8818026ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 364561, "upload_time": "2017-09-26T16:29:31", "url": "https://files.pythonhosted.org/packages/b8/55/34d602d48944f02d0c258f6ce105e6fdddd6e60247ae8d15e000429be94a/planemo-0.46.1.tar.gz" } ], "0.47.0": [ { "comment_text": "", "digests": { "md5": "b91170a427aec1b15b2c8370dcdf3cb1", "sha256": "9c865a0ad58401a1719f251fde3d9d114801554a2ecc6baa2519e4df79fbc1cf" }, "downloads": -1, "filename": "planemo-0.47.0-py2.7.egg", "has_sig": false, "md5_digest": "b91170a427aec1b15b2c8370dcdf3cb1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 593805, "upload_time": "2017-11-18T13:26:24", "url": "https://files.pythonhosted.org/packages/cb/eb/3dd7da8e450357287ad68fc15d0e405eae8f6f4dc7cef793b60ffbe60944/planemo-0.47.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a239d61ab32d8e8de45d6a936f63b548", "sha256": "3024290c2896502a9ac7ea3d1b19935b198a195f411f15a683436b50116e4eb5" }, "downloads": -1, "filename": "planemo-0.47.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a239d61ab32d8e8de45d6a936f63b548", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 355984, "upload_time": "2017-11-18T13:26:19", "url": "https://files.pythonhosted.org/packages/d5/d9/f65b2075b3ec325cd656c86d27b0b39ca0366128b24bc1cdd90e2a9bd031/planemo-0.47.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c32c0ed239e5e332666c65e04be614d", "sha256": "0e770fb18038ebbc24dae8a033e8190c3be6bd01747331d489b23571c8f05a57" }, "downloads": -1, "filename": "planemo-0.47.0.tar.gz", "has_sig": false, "md5_digest": "4c32c0ed239e5e332666c65e04be614d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365899, "upload_time": "2017-11-18T13:26:28", "url": "https://files.pythonhosted.org/packages/63/ad/e129121e87314e1091f5c9730afe733b28616c92830c5071db08d4ec4dc1/planemo-0.47.0.tar.gz" } ], "0.48.0": [ { "comment_text": "", "digests": { "md5": "97f928f391cc769bb13594d36e2a632a", "sha256": "c44bbb04fc2fe4b348e5cc4e7587707cb685a2c67bd4b242a10aa9739ac4205b" }, "downloads": -1, "filename": "planemo-0.48.0-py2.7.egg", "has_sig": false, "md5_digest": "97f928f391cc769bb13594d36e2a632a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 601640, "upload_time": "2018-02-28T14:17:47", "url": "https://files.pythonhosted.org/packages/53/c1/8f203917447823ad7c750c8d9a472b69024cd8bf62883aabfd2c20dd5766/planemo-0.48.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "70cc9f541e278f1908579ac436e2b407", "sha256": "b89e919000e6f3e0ef78a3978c3bd919cd5b9cacb081ee850e5a659fbc3d8efb" }, "downloads": -1, "filename": "planemo-0.48.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "70cc9f541e278f1908579ac436e2b407", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 360107, "upload_time": "2018-02-28T14:17:44", "url": "https://files.pythonhosted.org/packages/86/1d/206691994f82b4a35f100fe32bc8d0bf75ca375323abe0eb920e59d298bf/planemo-0.48.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7f5d12ad04a83113632a2a989ea1938", "sha256": "d9f31044d2eee033162bb5466a45e84803bd1b0defcc184126839f60b2deeee8" }, "downloads": -1, "filename": "planemo-0.48.0.tar.gz", "has_sig": false, "md5_digest": "d7f5d12ad04a83113632a2a989ea1938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369335, "upload_time": "2018-02-28T14:17:50", "url": "https://files.pythonhosted.org/packages/9a/86/9f9d5425519c519dd91db3f992484d82c1a03413620cb1b2c6a0ca9bb540/planemo-0.48.0.tar.gz" } ], "0.49.0": [ { "comment_text": "", "digests": { "md5": "dd391454e41d14763300a69a7ad1df31", "sha256": "62623be279cb3e362ef9bc2c4991291df3735f728891a2c7d54f8819a3810b98" }, "downloads": -1, "filename": "planemo-0.49.0-py2.7.egg", "has_sig": false, "md5_digest": "dd391454e41d14763300a69a7ad1df31", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 610455, "upload_time": "2018-05-06T15:25:17", "url": "https://files.pythonhosted.org/packages/3c/21/34a420af11a10939fee18510449ddf6da307fbfddbd0e600a778c59e5c33/planemo-0.49.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "06c34250dd58d34dd6822bddaefaec22", "sha256": "b864c8dc14b7db5a89fc1ec9a5fc885f0acbae43ca1dac27113883f6cdab98d8" }, "downloads": -1, "filename": "planemo-0.49.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06c34250dd58d34dd6822bddaefaec22", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336732, "upload_time": "2018-05-06T15:25:14", "url": "https://files.pythonhosted.org/packages/14/eb/73d30a67939147925c919f8266cb7936ab37a97350b0567ac6ebe7e52143/planemo-0.49.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a38e89a24d9f1e910c53052b49b0928a", "sha256": "9bb50588d84eac60a255ec64591fd8301eae899c6e1e06ea167f55eaf8cd89ae" }, "downloads": -1, "filename": "planemo-0.49.0.tar.gz", "has_sig": false, "md5_digest": "a38e89a24d9f1e910c53052b49b0928a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369050, "upload_time": "2018-05-06T15:25:19", "url": "https://files.pythonhosted.org/packages/91/34/1da64bc58c4d7687dcfe5467aa5e7f8b7b7c31e506954c88aed987ca5f49/planemo-0.49.0.tar.gz" } ], "0.49.1": [ { "comment_text": "", "digests": { "md5": "ae2fbcfce37f12d3106907df7bed08a9", "sha256": "33af7381666fac12453cf134afcbd7f6913b99d2ba84f02a9ec1b3f406d5e6f1" }, "downloads": -1, "filename": "planemo-0.49.1-py2.7.egg", "has_sig": false, "md5_digest": "ae2fbcfce37f12d3106907df7bed08a9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 610499, "upload_time": "2018-05-06T15:28:38", "url": "https://files.pythonhosted.org/packages/22/3f/a9f4b97037ef6836d16822712e517c14a62077d1c3fb5f42398fb090157e/planemo-0.49.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "986665aa02c9c6e60372e9557aae603a", "sha256": "5143ef176908ac818b4c4183b5c712fda0e344a8ed14ee56dd82e69de574ebb1" }, "downloads": -1, "filename": "planemo-0.49.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "986665aa02c9c6e60372e9557aae603a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336779, "upload_time": "2018-05-06T15:28:35", "url": "https://files.pythonhosted.org/packages/04/c0/7fa4f3cb2c75f7fe9108aef2ffb0103247cc3f5b32b06b896ae9e92bc623/planemo-0.49.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "654440010ff9cb8720707c553a415594", "sha256": "c4330b99cdcd3a9dc6b9e5849dcfbc999316e6fa906cc72e5e99d9a90960d850" }, "downloads": -1, "filename": "planemo-0.49.1.tar.gz", "has_sig": false, "md5_digest": "654440010ff9cb8720707c553a415594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369170, "upload_time": "2018-05-06T15:28:40", "url": "https://files.pythonhosted.org/packages/e4/fb/922ada6a063f7391a6899add30a9e0aa2a37528d172d5f83ec243256a8d5/planemo-0.49.1.tar.gz" } ], "0.49.2": [ { "comment_text": "", "digests": { "md5": "ebd132eb644521f56dd969aeb2ad4ec6", "sha256": "b55ebcc4cc292c1d81f3b521a66f9a424bb97e040beb91e368196e173c891340" }, "downloads": -1, "filename": "planemo-0.49.2-py2.7.egg", "has_sig": false, "md5_digest": "ebd132eb644521f56dd969aeb2ad4ec6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 610779, "upload_time": "2018-05-09T19:14:32", "url": "https://files.pythonhosted.org/packages/94/b4/5fe03b83c955ee719094044142d5b0bdcc192d176e78293e09e75f9d8cde/planemo-0.49.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "82c8e73aeec3d7c3174d0f77e500bec8", "sha256": "adcf5b984207935768e9fcafc40185f06efad40a3694066d24be1f6ddc131f95" }, "downloads": -1, "filename": "planemo-0.49.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82c8e73aeec3d7c3174d0f77e500bec8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336891, "upload_time": "2018-05-09T19:14:30", "url": "https://files.pythonhosted.org/packages/f3/95/6c8b3e7a8c32484a97447437605307f0f2bd017d8928e09677a1ed52d280/planemo-0.49.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db487473bcfdee7adf7644e8158a53b7", "sha256": "d092f12ae31d40bb192a26f35f034189de913e65c65ac35f78036a217e65cd14" }, "downloads": -1, "filename": "planemo-0.49.2.tar.gz", "has_sig": false, "md5_digest": "db487473bcfdee7adf7644e8158a53b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369366, "upload_time": "2018-05-09T19:14:35", "url": "https://files.pythonhosted.org/packages/b4/30/7b9e179df2b9376ac4e9e53d3e8f665481c5a16add1c9d713c6c8e5a2aca/planemo-0.49.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "6c682ea2056d5aace33ce17820f979e5", "sha256": "0c96385970d149394eee10183c23b35e650ac0549317a996cbc9e35894289158" }, "downloads": -1, "filename": "planemo-0.5.0-py2.7.egg", "has_sig": false, "md5_digest": "6c682ea2056d5aace33ce17820f979e5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 296618, "upload_time": "2015-02-22T04:39:16", "url": "https://files.pythonhosted.org/packages/1b/06/c3e1df05243829916008ea8030f18504bf8a946d4bd0a9f62075190a45fc/planemo-0.5.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b2fe8fc014a4da9c9447c1ba0e5c98c0", "sha256": "c90b19f4ba81f3da0fd0487965607a4c3091bd6134222dc4e90f234d26459d4a" }, "downloads": -1, "filename": "planemo-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2fe8fc014a4da9c9447c1ba0e5c98c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 178051, "upload_time": "2015-02-22T04:39:18", "url": "https://files.pythonhosted.org/packages/42/da/07295e26dcd64d422debe2f45391ce86a78f1b30c9fd39809e662236cb29/planemo-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7513dd1f69be197064138466c4f20e9", "sha256": "77111d11f2ad7de4770cab0b2df3241362e7217479fbc01b978c2280954058f8" }, "downloads": -1, "filename": "planemo-0.5.0.tar.gz", "has_sig": false, "md5_digest": "d7513dd1f69be197064138466c4f20e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157183, "upload_time": "2015-02-22T04:39:20", "url": "https://files.pythonhosted.org/packages/73/14/a59497e032cf6e83f8e3c8be5df19d8df56c67062fe5253451d277bb69fd/planemo-0.5.0.tar.gz" } ], "0.5.0.dev0": [ { "comment_text": "", "digests": { "md5": "b8f6c731f572d587836d6092a3837dd3", "sha256": "60ba391ce3ddc589a24e0898e166335a7802fdacc3e9c15a689dab7696dcbe77" }, "downloads": -1, "filename": "planemo-0.5.0.dev0.tar.gz", "has_sig": false, "md5_digest": "b8f6c731f572d587836d6092a3837dd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156523, "upload_time": "2015-02-22T02:59:36", "url": "https://files.pythonhosted.org/packages/f8/e5/cf3669ea056a6f85cf0ee73a0966a741b8c01259a3f0220dbd09b03d7da2/planemo-0.5.0.dev0.tar.gz" } ], "0.50.0": [ { "comment_text": "", "digests": { "md5": "75e2880c8c5d23526f341257faae3c99", "sha256": "f05e1e2f3695f5f99e9e51c598cad01f27636f31ad7bace20d14b3be232b6e6a" }, "downloads": -1, "filename": "planemo-0.50.0-py2.7.egg", "has_sig": false, "md5_digest": "75e2880c8c5d23526f341257faae3c99", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 611399, "upload_time": "2018-05-11T00:38:29", "url": "https://files.pythonhosted.org/packages/b8/67/6419d2d4cd81484a1b5e3f5a9f537f278161e876586e03c6f09ee2cc6f16/planemo-0.50.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5901fe0c785efd746c5d083b7179593c", "sha256": "a29972c041c7481a737f55a003595aed978eee49372aeec3639127a67f417ac8" }, "downloads": -1, "filename": "planemo-0.50.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5901fe0c785efd746c5d083b7179593c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 337139, "upload_time": "2018-05-11T00:38:27", "url": "https://files.pythonhosted.org/packages/10/c2/b95d519fcea6e5225ce8cd33998107857742b77e519104ac01099892ecc1/planemo-0.50.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c435d8c48177f2db029ecf78f6e88f2", "sha256": "04521bc475dd5f85da1e854fa37ae54213b80b334848574906594fa1c80bc714" }, "downloads": -1, "filename": "planemo-0.50.0.tar.gz", "has_sig": false, "md5_digest": "0c435d8c48177f2db029ecf78f6e88f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369695, "upload_time": "2018-05-11T00:38:32", "url": "https://files.pythonhosted.org/packages/ec/28/955b909babf7e974969d0b49357af11e2f1e3a2d9d75e4898b75a9cae6c4/planemo-0.50.0.tar.gz" } ], "0.50.1": [ { "comment_text": "", "digests": { "md5": "c069958be64597ef422be40e889a2c20", "sha256": "5fd8bc1554267f952abdade0f3a78330e1db7101d7c4beb1676eba97784cde1c" }, "downloads": -1, "filename": "planemo-0.50.1-py2.7.egg", "has_sig": false, "md5_digest": "c069958be64597ef422be40e889a2c20", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 611559, "upload_time": "2018-05-11T08:01:01", "url": "https://files.pythonhosted.org/packages/6e/d5/780705079d4cc0ecc4a0d0df3f33d329afe95f96fe492fcfcb217b1f47d9/planemo-0.50.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a1b833af92b4949d8d04a9797ad714b1", "sha256": "a623d98c13e57547c5748ff3f9f0d9114c3d46e0f8010c7cf7a6aca3400cf0f9" }, "downloads": -1, "filename": "planemo-0.50.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a1b833af92b4949d8d04a9797ad714b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 337223, "upload_time": "2018-05-11T08:00:58", "url": "https://files.pythonhosted.org/packages/08/06/3345cf2b0a3486746741071bf1176b02ae88a198a1168b597d3ff87c1734/planemo-0.50.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1fc7757e1b8a1e1d94ec74057ff4f12", "sha256": "f73a55479b24cdce1da6b034221a563a0244a133c34b8f8923fb2fd80a3696c0" }, "downloads": -1, "filename": "planemo-0.50.1.tar.gz", "has_sig": false, "md5_digest": "c1fc7757e1b8a1e1d94ec74057ff4f12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369897, "upload_time": "2018-05-11T08:01:04", "url": "https://files.pythonhosted.org/packages/17/61/585a953236847c13e6764fd1ac9144160a3e4506fa47ee3524860c8a1c61/planemo-0.50.1.tar.gz" } ], "0.51.0": [ { "comment_text": "", "digests": { "md5": "28d5af23cbc8db748c414af610750dbf", "sha256": "2eded31d613d6d9229844c1515d440057d52c6c185459ce853fb2af785f1bf70" }, "downloads": -1, "filename": "planemo-0.51.0-py2.7.egg", "has_sig": false, "md5_digest": "28d5af23cbc8db748c414af610750dbf", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 619750, "upload_time": "2018-05-20T03:24:51", "url": "https://files.pythonhosted.org/packages/ee/6c/8a14b2e4665857fc2e1ddbbcc6feccc6a584af41ab0a88050a38e61d255c/planemo-0.51.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "23d95387c09ca6a1ce96847fe0a803d0", "sha256": "7054cae06d0fa9c0eaaef1e3bc1a6d78ff0cef5d0f876c284d11ae50b87bd879" }, "downloads": -1, "filename": "planemo-0.51.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23d95387c09ca6a1ce96847fe0a803d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 341426, "upload_time": "2018-05-20T03:24:48", "url": "https://files.pythonhosted.org/packages/07/43/5350c6be5d35b26829268d34e85e501bfa6289d648c5061892939a726535/planemo-0.51.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5e9238393159e60b75638a039b2d48a1", "sha256": "84e45087bb948616bbaaed70d0c22ff31f1c23f188dc091ab512197292bc0a88" }, "downloads": -1, "filename": "planemo-0.51.0.tar.gz", "has_sig": false, "md5_digest": "5e9238393159e60b75638a039b2d48a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 374279, "upload_time": "2018-05-20T03:24:54", "url": "https://files.pythonhosted.org/packages/92/20/30dcb89856a1508eea11fd1525d349c5496d79cda97802f40dc662e64fca/planemo-0.51.0.tar.gz" } ], "0.52.0": [ { "comment_text": "", "digests": { "md5": "1a399339373cbd9b61b83855426d6512", "sha256": "70fc089ad085a4da561d595d32ce28692d0c7df344c4ab1328c12bb6e053bd02" }, "downloads": -1, "filename": "planemo-0.52.0-py2.7.egg", "has_sig": false, "md5_digest": "1a399339373cbd9b61b83855426d6512", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 620140, "upload_time": "2018-05-20T19:28:02", "url": "https://files.pythonhosted.org/packages/4f/c8/a5f1610ee7540a857eaeefc76ca6902c8613e964d879b16177daa9e4adac/planemo-0.52.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a89cf1210bb5e94a13ed09e327ecaf7f", "sha256": "ce6e04644fe7660ee5fcba3f671293711f12b2bcc5388bcd0c6054d481884534" }, "downloads": -1, "filename": "planemo-0.52.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a89cf1210bb5e94a13ed09e327ecaf7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 341629, "upload_time": "2018-05-20T19:27:59", "url": "https://files.pythonhosted.org/packages/ff/65/ae22fe92d825f7d0ca7b0fc264c16bd18929a752ed6941395947ad93e01e/planemo-0.52.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ec95d57d717140e231327eb5c4c1d0c", "sha256": "fcdef5ceb7f67324e7abb4e4d02cabe11985a2b7920545466fd9d04c07796705" }, "downloads": -1, "filename": "planemo-0.52.0.tar.gz", "has_sig": false, "md5_digest": "3ec95d57d717140e231327eb5c4c1d0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 374602, "upload_time": "2018-05-20T19:28:05", "url": "https://files.pythonhosted.org/packages/47/d4/45897584bc11d50d864633ca0009196f36d940b38c11f148512301d52e87/planemo-0.52.0.tar.gz" } ], "0.53.0": [ { "comment_text": "", "digests": { "md5": "b3985ee53e819754b47111a5fe4be304", "sha256": "45e6b66f8b5f73544f0c4391d4894a925f72572e1089125058cffbf76f88a834" }, "downloads": -1, "filename": "planemo-0.53.0-py2.7.egg", "has_sig": false, "md5_digest": "b3985ee53e819754b47111a5fe4be304", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 621284, "upload_time": "2018-05-22T17:44:53", "url": "https://files.pythonhosted.org/packages/97/b0/e49941fd5c543c89c15e988aaa85b0d634e5c961ab6fa0a2d7441b85e70c/planemo-0.53.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9ca8096932b67ddf5ddb6df6d3408664", "sha256": "9953ce82cd2aaa80ec7101eac166edf37a3a614c7b5b60dbc6941ed64e77c245" }, "downloads": -1, "filename": "planemo-0.53.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ca8096932b67ddf5ddb6df6d3408664", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 342252, "upload_time": "2018-05-22T17:44:51", "url": "https://files.pythonhosted.org/packages/a1/32/be26096b129c0da00fec801c4f21feb27e1ee72e6cb00c9fcc79afeeaf2f/planemo-0.53.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcf40338b0e448430fd12a9782b9a874", "sha256": "419b140ab7b2cfc455abeb961f44eaecd1a9288f0022f418e9d5070d6535c3df" }, "downloads": -1, "filename": "planemo-0.53.0.tar.gz", "has_sig": false, "md5_digest": "dcf40338b0e448430fd12a9782b9a874", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 375693, "upload_time": "2018-05-22T17:44:56", "url": "https://files.pythonhosted.org/packages/69/59/26ac69cfb2798fa5ffbf7d8f2b11e58dcd7c3227f0778ebf0267f133dba4/planemo-0.53.0.tar.gz" } ], "0.54.0": [ { "comment_text": "", "digests": { "md5": "370430cf5dea056a8c9f99aca005ee1b", "sha256": "d2cb660581cc49d27a05d660725feaacc3251767130da0e8da647acfa7bd26c5" }, "downloads": -1, "filename": "planemo-0.54.0-py2.7.egg", "has_sig": false, "md5_digest": "370430cf5dea056a8c9f99aca005ee1b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 625600, "upload_time": "2018-06-06T18:17:01", "url": "https://files.pythonhosted.org/packages/d1/a2/2a3085cfb8d3c5620ded6fc8b1d00902a46311ed28a92de2377ddddce46a/planemo-0.54.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3ee448405b4bae6f93c4ebe50076caa7", "sha256": "dc1cae9c197875ea956afffa16855045127298776f9309bc0622f740d4b0b8c5" }, "downloads": -1, "filename": "planemo-0.54.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ee448405b4bae6f93c4ebe50076caa7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 344375, "upload_time": "2018-06-06T18:16:59", "url": "https://files.pythonhosted.org/packages/94/c2/6b75f7fe21e903f9553a97e7d81ae6434eab5eba4fbf7ea3e71299beb110/planemo-0.54.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a07f965815d7ceb86094f2e95669ea4", "sha256": "dae22557b860a56ea6ae9b0a68d3bbea0c586266084584c8d1428f07151444f0" }, "downloads": -1, "filename": "planemo-0.54.0.tar.gz", "has_sig": false, "md5_digest": "6a07f965815d7ceb86094f2e95669ea4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 378551, "upload_time": "2018-06-06T18:17:03", "url": "https://files.pythonhosted.org/packages/34/fc/b74e3d0e5f3523f8b384583f69739f68154ee9eecbc6d10b2e0485454d79/planemo-0.54.0.tar.gz" } ], "0.55.0": [ { "comment_text": "", "digests": { "md5": "f10135d9a55469f45276b6fb2b8ac4f6", "sha256": "0febb7cbdd5f06a160ed4bfbc6fb9635e2897a6c7134061cc1dc36958b5f66ee" }, "downloads": -1, "filename": "planemo-0.55.0-py2.7.egg", "has_sig": false, "md5_digest": "f10135d9a55469f45276b6fb2b8ac4f6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 663505, "upload_time": "2018-09-12T17:01:48", "url": "https://files.pythonhosted.org/packages/fc/6a/12b1df75ae9651e1355024d459780df1a735e7784fecf7dbd7ab68c2d511/planemo-0.55.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b356dc0cb3ba64c838e6752d86890aab", "sha256": "04683294742db8ad104933b32089c0c54b29647c0fc7e678ac6ac5832868e690" }, "downloads": -1, "filename": "planemo-0.55.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b356dc0cb3ba64c838e6752d86890aab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 360817, "upload_time": "2018-09-12T17:01:46", "url": "https://files.pythonhosted.org/packages/6b/aa/bf753e923f2e85766623545485b389a06f3ca9d07b8057322eb4c06894b5/planemo-0.55.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6aa7fc2d2a4e75075c9f4d99de8d10e", "sha256": "fa12d3694c64b3f76c5f0f5199b0dab325ca8c6af78b7026c8092464a0378701" }, "downloads": -1, "filename": "planemo-0.55.0.tar.gz", "has_sig": false, "md5_digest": "f6aa7fc2d2a4e75075c9f4d99de8d10e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 391643, "upload_time": "2018-09-12T17:01:51", "url": "https://files.pythonhosted.org/packages/74/a7/ea2a5a584f43d8b9f5aa3025541bb6652a2d197a2835aa5f4e95bf84dc03/planemo-0.55.0.tar.gz" } ], "0.56.0": [ { "comment_text": "", "digests": { "md5": "5917bfd5861bec2df9ef16734cf89448", "sha256": "92721a494104e3159c842273d19f465edc12cacfab09e83f39f15e05abedbb06" }, "downloads": -1, "filename": "planemo-0.56.0-py2.7.egg", "has_sig": false, "md5_digest": "5917bfd5861bec2df9ef16734cf89448", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 664840, "upload_time": "2018-10-30T19:33:05", "url": "https://files.pythonhosted.org/packages/38/08/07ff7a24556a5787d5fd80db0587f20abb43a039ae0bf3b650f6b5a1c913/planemo-0.56.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c99220f053d0890252d9a3555cecb30b", "sha256": "7d1326207a5f95833c0ec5e3e88db97c874cfcd8ac81a8bfa1e9dad16d999302" }, "downloads": -1, "filename": "planemo-0.56.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c99220f053d0890252d9a3555cecb30b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 361463, "upload_time": "2018-10-30T19:33:03", "url": "https://files.pythonhosted.org/packages/f0/19/3bb100654080b9965126f95133f427fab7a3cd6ec2c81dce6029efbf5da4/planemo-0.56.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c276e10eb3cc5934c6313058a253fec3", "sha256": "b790bd73eb6be68e57b986b5149427fba3328808e98ffb2a26e80f02df789736" }, "downloads": -1, "filename": "planemo-0.56.0.tar.gz", "has_sig": false, "md5_digest": "c276e10eb3cc5934c6313058a253fec3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 392790, "upload_time": "2018-10-30T19:33:08", "url": "https://files.pythonhosted.org/packages/3c/7a/1299c5c998b75fc6761ef4864bdc27446c4f067a1b9ce0c477a6f4a63bb7/planemo-0.56.0.tar.gz" } ], "0.57.0": [ { "comment_text": "", "digests": { "md5": "113ea6691b6b41dabd38bbcc7417b34f", "sha256": "ef3bab8b0de232b2e9c15a30773953660705c2fa190fc20d74fe79ae88adc5d7" }, "downloads": -1, "filename": "planemo-0.57.0-py2.7.egg", "has_sig": false, "md5_digest": "113ea6691b6b41dabd38bbcc7417b34f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 667980, "upload_time": "2018-11-19T15:05:14", "url": "https://files.pythonhosted.org/packages/a5/52/4d4deb7ade88b5045ac634f0252f77619f1283d4e461c3367cb7afb0279b/planemo-0.57.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "729e6174238512026c8fb64e1d5262ac", "sha256": "b0bd4db31a1406ec2bd9b4480a8f110ed2a31dfffb93fa5ad500a03994710541" }, "downloads": -1, "filename": "planemo-0.57.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "729e6174238512026c8fb64e1d5262ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 367175, "upload_time": "2018-11-19T15:05:12", "url": "https://files.pythonhosted.org/packages/5c/12/7dc59a3dbf486d26f9e842b45c0229eea0520405acc1b8ddded93a86d206/planemo-0.57.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee3fc436cd23d7b653388cc90b584940", "sha256": "8ed5ee7f4a133ea2025698167ded71338bb896c1ece7a2dd5bca749d1f1d158f" }, "downloads": -1, "filename": "planemo-0.57.0.tar.gz", "has_sig": false, "md5_digest": "ee3fc436cd23d7b653388cc90b584940", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 394520, "upload_time": "2018-11-19T15:05:16", "url": "https://files.pythonhosted.org/packages/e0/95/c5d1eb00b5b6ed00d05e67648f6daa6893f0848c19418e216ad4430c06d7/planemo-0.57.0.tar.gz" } ], "0.57.1": [ { "comment_text": "", "digests": { "md5": "d345ccca3c333a8b7419bdcdd0dfd752", "sha256": "67aa9fc69fd653be5ebceca7d375e16ecaa947a6cddd6315e8182178ea7f52c2" }, "downloads": -1, "filename": "planemo-0.57.1-py2.7.egg", "has_sig": false, "md5_digest": "d345ccca3c333a8b7419bdcdd0dfd752", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 668075, "upload_time": "2018-11-23T08:32:24", "url": "https://files.pythonhosted.org/packages/3e/f9/97afe9a6e3089e988674b01705af9b837a424f8a311589f27a99103404ec/planemo-0.57.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ba95633001f0950fd2ec64a479f09fbf", "sha256": "0306f78072e66b5d694df58e7750d8be566b3747857e837b30a39259e25d2244" }, "downloads": -1, "filename": "planemo-0.57.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba95633001f0950fd2ec64a479f09fbf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 367241, "upload_time": "2018-11-23T08:32:18", "url": "https://files.pythonhosted.org/packages/a4/d7/e736c8fc04f1d9ed005917c7117ed7ac09adb5587507c1ab1f9dd341d82a/planemo-0.57.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04988401bafe746681fbb450a44efb84", "sha256": "2346ebef56797d3fc1987b9baaeec8512f3426bb000e1a261791cd70da2efbc3" }, "downloads": -1, "filename": "planemo-0.57.1.tar.gz", "has_sig": false, "md5_digest": "04988401bafe746681fbb450a44efb84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 394663, "upload_time": "2018-11-23T08:32:26", "url": "https://files.pythonhosted.org/packages/c4/0c/4c410da48aa467627e396c09dad68bb8843c8d73477693c7ea06c50270d8/planemo-0.57.1.tar.gz" } ], "0.58.0": [ { "comment_text": "", "digests": { "md5": "f698997fbba7e6c8db0a355caf4fa194", "sha256": "f938d3e3de2787fb7d35b984a65f4d3b2f65cf3eb2af1b2dfa68fbf8fb2a6f1c" }, "downloads": -1, "filename": "planemo-0.58.0-py2.7.egg", "has_sig": false, "md5_digest": "f698997fbba7e6c8db0a355caf4fa194", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 667967, "upload_time": "2019-01-01T19:20:20", "url": "https://files.pythonhosted.org/packages/69/5f/4d4c242c4987e43b152c442319001ac3aba1efe205609255fbd15fa54eed/planemo-0.58.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3ea7261b37118762119a08f8d630055e", "sha256": "68b276fc52760735ae8268b1d2895b9eab26e17f409e1ef26ebdaf4064a16a71" }, "downloads": -1, "filename": "planemo-0.58.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ea7261b37118762119a08f8d630055e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 367243, "upload_time": "2019-01-01T19:20:17", "url": "https://files.pythonhosted.org/packages/b9/0e/c81c6d6590e958d632d81d7f7907bcec1db33c70b48c728429a8628c35f7/planemo-0.58.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6273d37815357f51299ee0664a4aee04", "sha256": "afb20c9d984c04ff375cb9e27c510163c093a527eca1169b0fedf59165721b49" }, "downloads": -1, "filename": "planemo-0.58.0.tar.gz", "has_sig": false, "md5_digest": "6273d37815357f51299ee0664a4aee04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 394894, "upload_time": "2019-01-01T19:20:23", "url": "https://files.pythonhosted.org/packages/8f/13/ac8aca58ef985c984df91ac6df6090efe35f8f38198b9f36b9068b187033/planemo-0.58.0.tar.gz" } ], "0.58.1": [ { "comment_text": "", "digests": { "md5": "e0ce93c1d8264dd6af9408a74b77e408", "sha256": "993fea282085a8787b6cc2c3ab28cde9b445718832e0768f3cc3130d677d6f76" }, "downloads": -1, "filename": "planemo-0.58.1-py2.7.egg", "has_sig": false, "md5_digest": "e0ce93c1d8264dd6af9408a74b77e408", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 659359, "upload_time": "2019-01-03T14:57:07", "url": "https://files.pythonhosted.org/packages/6d/63/aa47459d72ac612e7ee4e1092e942b2e24d36025c1c6dc7551c97e0e9e32/planemo-0.58.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e692cd8dac0f20c7c8be4d051fce3094", "sha256": "a6468cbbda014ca47a1c00c3dccb861f907a65ae830458315fd646f5e9fadca8" }, "downloads": -1, "filename": "planemo-0.58.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e692cd8dac0f20c7c8be4d051fce3094", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 364169, "upload_time": "2019-01-03T14:57:04", "url": "https://files.pythonhosted.org/packages/77/5c/18b5d111ad63bc62b5105defd449a8b6fb2c161909c7eb5417233104ebac/planemo-0.58.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26a3668fa407837fe1f84cb07387fc61", "sha256": "ba6c2592bc44de5c315a33eaa111ec333c55fcf462e5ba6f47493461b46f6076" }, "downloads": -1, "filename": "planemo-0.58.1.tar.gz", "has_sig": false, "md5_digest": "26a3668fa407837fe1f84cb07387fc61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 394138, "upload_time": "2019-01-03T14:57:10", "url": "https://files.pythonhosted.org/packages/4e/c0/b7fcaa77e3f12c0ad8629ed9382c5c16b8ac812244e2fdcbec20db4c7587/planemo-0.58.1.tar.gz" } ], "0.58.2": [ { "comment_text": "", "digests": { "md5": "02be1fd4b0bb98f23221186e5c81e6d3", "sha256": "7214b5da65e9343849cdd29dee66a613108d39569f8c2058048e15a922e3632e" }, "downloads": -1, "filename": "planemo-0.58.2-py2.7.egg", "has_sig": false, "md5_digest": "02be1fd4b0bb98f23221186e5c81e6d3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 660262, "upload_time": "2019-03-01T01:52:05", "url": "https://files.pythonhosted.org/packages/2e/36/90f66c54eaa0b16fdf356d05976e01151c546aced52529becd462bb1b6f0/planemo-0.58.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c98eea66360fd1dccbd4b869811c0c15", "sha256": "321174b3e4f6f3f625171f8b28fe4593acb5af96960133f13696223a1e759730" }, "downloads": -1, "filename": "planemo-0.58.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c98eea66360fd1dccbd4b869811c0c15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 388992, "upload_time": "2019-03-01T01:52:00", "url": "https://files.pythonhosted.org/packages/7f/55/0c9b631c7ae1a3423130487c2f9e808ea88aa3e4c156fe325abba2ca0c32/planemo-0.58.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2d951dc4158060e60f00a496c5c5ada", "sha256": "f9354f03e0f82fc1eca69d1574131ad35ab45a3958ef0a8d05c614618bed114d" }, "downloads": -1, "filename": "planemo-0.58.2.tar.gz", "has_sig": false, "md5_digest": "b2d951dc4158060e60f00a496c5c5ada", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 395441, "upload_time": "2019-03-01T01:52:10", "url": "https://files.pythonhosted.org/packages/1a/1e/df28a0bacd8870e6e719031cc97c07cc7e92ae99edce2518ab1b6a014ff0/planemo-0.58.2.tar.gz" } ], "0.59.0": [ { "comment_text": "", "digests": { "md5": "5ce18c19dd703ee93ebc64653cdde819", "sha256": "5f72204295685f22bdd03e3c8bc1810151f2fb8eedb6f616ea7d724050a3cc69" }, "downloads": -1, "filename": "planemo-0.59.0-py2.7.egg", "has_sig": false, "md5_digest": "5ce18c19dd703ee93ebc64653cdde819", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 671686, "upload_time": "2019-05-09T12:04:51", "url": "https://files.pythonhosted.org/packages/40/23/3dba6e42c1d3f98aad2049f471c161f477d2d90a8ec02ba6231c5ba870d3/planemo-0.59.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bcf37f727fb5ad02736603366724c7f0", "sha256": "804ec4e86bda124ce5e055c7de74c58e241ef64e23a0a5cc0c3cde84faa71a9e" }, "downloads": -1, "filename": "planemo-0.59.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcf37f727fb5ad02736603366724c7f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 369662, "upload_time": "2019-05-09T12:04:48", "url": "https://files.pythonhosted.org/packages/ad/c6/241b264db91ba31c287eb0d22cc9f27599aa58707fcf35eef9dff15dd85a/planemo-0.59.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2d2127897bb1d28ca645f2197341c03", "sha256": "68795019c4680e1de9993c96a101d40673316870c26806bbe0a544400556f376" }, "downloads": -1, "filename": "planemo-0.59.0.tar.gz", "has_sig": false, "md5_digest": "f2d2127897bb1d28ca645f2197341c03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 397917, "upload_time": "2019-05-09T12:04:53", "url": "https://files.pythonhosted.org/packages/62/45/915e5babd5fcf1f97c664a9e626c491a6244ec903ed615a5a690defcc024/planemo-0.59.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "58ea111cabcecc507826178873183751", "sha256": "ba6ece5d8691bfab9e7537b8df0ab6b8011885c6fce44bb11a089c8bf356ddda" }, "downloads": -1, "filename": "planemo-0.6.0-py2.7.egg", "has_sig": false, "md5_digest": "58ea111cabcecc507826178873183751", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 302118, "upload_time": "2015-03-16T19:27:13", "url": "https://files.pythonhosted.org/packages/a3/40/895630c7a759b7e241bf41bb999e420970ec1244741e95c398336d93782a/planemo-0.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e59dd98224531b315699f6893807d960", "sha256": "56019c67df650cb4362d8e9b4084877271525fd2680d0193581c7a7e63b8cf90" }, "downloads": -1, "filename": "planemo-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e59dd98224531b315699f6893807d960", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 180885, "upload_time": "2015-03-16T19:27:16", "url": "https://files.pythonhosted.org/packages/bd/10/dc49293ec8b007f112995b280f41fd3fb0427b910bdaa5ebc253664f8df8/planemo-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e1efc208b8fea7d86c731943682d250", "sha256": "67bf6d0a166b694e9cdebac68eeff81ce2934504d61596fd831382e14c736095" }, "downloads": -1, "filename": "planemo-0.6.0.tar.gz", "has_sig": false, "md5_digest": "1e1efc208b8fea7d86c731943682d250", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 172785, "upload_time": "2015-03-16T19:27:19", "url": "https://files.pythonhosted.org/packages/a0/05/80551a33c341259ce60f456dc833bdbd510a7b93a31df4ec4da3c4726258/planemo-0.6.0.tar.gz" } ], "0.60.0": [ { "comment_text": "", "digests": { "md5": "a8cee8d5a6c10841197335d0292f514a", "sha256": "a59617f16d5c0c8ab76eb37a89e772f088cec7adbef838d2fde615b69f4e8d59" }, "downloads": -1, "filename": "planemo-0.60.0-py2.7.egg", "has_sig": false, "md5_digest": "a8cee8d5a6c10841197335d0292f514a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 673230, "upload_time": "2019-05-31T15:14:56", "url": "https://files.pythonhosted.org/packages/21/cf/ec17d1dc4c669a59b3d4534b6099f687a6b0ef958aa882af3d6e9514677b/planemo-0.60.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "42553b1dea8c3914cc8e1ab4fda3218e", "sha256": "5d60be820c85b71f0474e8edc4115ac3c745a9db590f9061c4bc73671923324a" }, "downloads": -1, "filename": "planemo-0.60.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42553b1dea8c3914cc8e1ab4fda3218e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 395720, "upload_time": "2019-05-31T15:14:51", "url": "https://files.pythonhosted.org/packages/56/0e/c2f38d1d7f0154a4ad3045e0ff90ea901dbb2a82a6d61e093a2f13640c09/planemo-0.60.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "682bd934386f4e69b3e25d249c0cd7e9", "sha256": "9593f72af6b417d3625630f6e6b56e663b7d6d91ef159f8671bd6ffb0126443e" }, "downloads": -1, "filename": "planemo-0.60.0.tar.gz", "has_sig": false, "md5_digest": "682bd934386f4e69b3e25d249c0cd7e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 398541, "upload_time": "2019-05-31T15:15:00", "url": "https://files.pythonhosted.org/packages/d4/a0/9d8815da39abbcda963b4de520077d180e25e00b0f7d8439c92086ef7ac4/planemo-0.60.0.tar.gz" } ], "0.61.0": [ { "comment_text": "", "digests": { "md5": "a48940749e275af057eedda0c68b16fb", "sha256": "a3707ab5ebbd377f72d9110561ae6eeda9ce7713648ee07f40da0695c923f9c9" }, "downloads": -1, "filename": "planemo-0.61.0-py2.7.egg", "has_sig": false, "md5_digest": "a48940749e275af057eedda0c68b16fb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 675611, "upload_time": "2019-07-08T08:25:18", "url": "https://files.pythonhosted.org/packages/8c/e8/418df81d86b0940663879f7321caf23f935ba10b7396822450fc63e90133/planemo-0.61.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6cce94f094eb890858bc43e00f8ecc81", "sha256": "ade1dc112391f29ad5c6cc1397e9388a15dfc75c1e938a8740e2fb7c7d04082b" }, "downloads": -1, "filename": "planemo-0.61.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6cce94f094eb890858bc43e00f8ecc81", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 372661, "upload_time": "2019-07-08T08:25:14", "url": "https://files.pythonhosted.org/packages/85/2d/dfeb9c9969f2b63537c04e6bc2ea3d877d64e8371ab9e3505e935363f2bc/planemo-0.61.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6ff00fded3641aec1b7f7108428c38a", "sha256": "a129f1d24f1883bff037d5f79f9700a36a55f052656e09250df82d27e618dfa8" }, "downloads": -1, "filename": "planemo-0.61.0.tar.gz", "has_sig": false, "md5_digest": "f6ff00fded3641aec1b7f7108428c38a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 401224, "upload_time": "2019-07-08T08:25:22", "url": "https://files.pythonhosted.org/packages/c3/9b/85067f92e59398bdfe2b9b0e3c2a87c7f6fd0868ee616e9cc5fa41845657/planemo-0.61.0.tar.gz" } ], "0.62.1": [ { "comment_text": "", "digests": { "md5": "fc82a9fe3ad10451fe0832ba6fa70d5a", "sha256": "228b5a9a168922af41e38f4e55763ce27860655a78c95a09670962278d28f55a" }, "downloads": -1, "filename": "planemo-0.62.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc82a9fe3ad10451fe0832ba6fa70d5a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 374340, "upload_time": "2019-10-14T16:04:50", "url": "https://files.pythonhosted.org/packages/57/3e/1bd2265119ca51f9f21e39eb73bcd41c1a4e60e43a6005896bc96b718999/planemo-0.62.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e862d60cd5a556e183d4a1f33a8be473", "sha256": "5933afb0bb2d0e4baccb1e8660d288c6c494cc2a63442a798fe58ece245c742e" }, "downloads": -1, "filename": "planemo-0.62.1.tar.gz", "has_sig": false, "md5_digest": "e862d60cd5a556e183d4a1f33a8be473", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 404786, "upload_time": "2019-10-14T16:04:59", "url": "https://files.pythonhosted.org/packages/79/1b/c77745fda1b580c3d54fbbcbe0f664683a2dbfe3daee788a4f0c46c707c6/planemo-0.62.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "3e8363780d1d048d949a9747086344d9", "sha256": "ffc1a6c33c1bc53271695fb9cdbdd2a137e3fe0bb273c68290d7e56f8eeb5436" }, "downloads": -1, "filename": "planemo-0.7.0-py2.7.egg", "has_sig": false, "md5_digest": "3e8363780d1d048d949a9747086344d9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 308414, "upload_time": "2015-04-13T14:23:00", "url": "https://files.pythonhosted.org/packages/83/24/eeed9943975a5f3ee85ddee2b27b6e0e77464ff2ab794573d1ae64ce486f/planemo-0.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6a1927c26d54b0f4ef68a75084d7d205", "sha256": "e33780509af30dae5f1f85a6262b14ce550b7b7db187fd2b632bb9bb260c6d36" }, "downloads": -1, "filename": "planemo-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a1927c26d54b0f4ef68a75084d7d205", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 184434, "upload_time": "2015-04-13T14:23:04", "url": "https://files.pythonhosted.org/packages/f5/e9/e191407a90ff21ab85cfb93489f8b70a8086c8cadea0c7be597cf4924654/planemo-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3fad5ae56c5c08af9253269d21c4e554", "sha256": "e724baefd4a2f8551d127a0db6a908e4839fe4b2c7b2cfb26600adc729e67faf" }, "downloads": -1, "filename": "planemo-0.7.0.tar.gz", "has_sig": false, "md5_digest": "3fad5ae56c5c08af9253269d21c4e554", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177333, "upload_time": "2015-04-13T14:23:08", "url": "https://files.pythonhosted.org/packages/fe/1c/bbe17f9ade3c2912ef022b20d65199fc42131e5967bd499acf90b9b058a5/planemo-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "07824a667be8a2771200a7834ec5ff87", "sha256": "ad92a10dcaa715de9be33d0fb5104fa57b04ee6b0559d8bcbe7ae3b238545c85" }, "downloads": -1, "filename": "planemo-0.8.0-py2.7.egg", "has_sig": false, "md5_digest": "07824a667be8a2771200a7834ec5ff87", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 293979, "upload_time": "2015-04-28T11:56:07", "url": "https://files.pythonhosted.org/packages/94/62/e16d819f955d48e2ab75b032694c84605e26deeb3584b5657cde4923d985/planemo-0.8.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5e4daf517ca0884cc2f5b8a83afb12d4", "sha256": "27818b1384d0c2466fd9636c045bd21bd997adbacc311c9327ae1601c27aa63c" }, "downloads": -1, "filename": "planemo-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e4daf517ca0884cc2f5b8a83afb12d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 149777, "upload_time": "2015-04-28T11:56:09", "url": "https://files.pythonhosted.org/packages/20/fd/fbfe9a7e37057b60a873d3dce34db1e7e59e8fcb593dbc590c4030373143/planemo-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9215f96bdba451a5cec0709e2a64e9c3", "sha256": "0903af51cd877bfb219b39b04d799e0979d390fdc4e8a8c9342edd0931ba7b75" }, "downloads": -1, "filename": "planemo-0.8.0.tar.gz", "has_sig": false, "md5_digest": "9215f96bdba451a5cec0709e2a64e9c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100090, "upload_time": "2015-04-28T11:56:12", "url": "https://files.pythonhosted.org/packages/68/b0/532c52eea057cd53fe7928c35c23c98f4e8ebc363ea60959b7eac45868d2/planemo-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "bde062df7e699c5d4035299c8288996a", "sha256": "983cfa632d7317d1b99ed6c22cc0efb5b801d78548278b5f6fec002bae713344" }, "downloads": -1, "filename": "planemo-0.8.1-py2.7.egg", "has_sig": false, "md5_digest": "bde062df7e699c5d4035299c8288996a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 308361, "upload_time": "2015-04-28T12:32:48", "url": "https://files.pythonhosted.org/packages/04/a5/8e171e817f77e4f71e9ad6b3b2542bbd916ce591184b4d4ffe9d326ee4dd/planemo-0.8.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a24a6bb44fa49235f5a93026648156a2", "sha256": "020f457a89d91770a4fe948cac3d07cd8978b8a2916b904e64ed04f206b6751b" }, "downloads": -1, "filename": "planemo-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a24a6bb44fa49235f5a93026648156a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 164527, "upload_time": "2015-04-28T12:32:51", "url": "https://files.pythonhosted.org/packages/32/98/aea2ab465279ce6d04badee1edbf2c7bdaae0539a87f5585dfe6323a9168/planemo-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e95ccbbb73222923c93bf12de59d6e6", "sha256": "5762d7072ae25afdc096fd0d978814e242bb746a75a7b0a9a0959a0cd752071c" }, "downloads": -1, "filename": "planemo-0.8.1.tar.gz", "has_sig": false, "md5_digest": "0e95ccbbb73222923c93bf12de59d6e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139659, "upload_time": "2015-04-28T12:32:54", "url": "https://files.pythonhosted.org/packages/2d/92/adb5b232cad548541c3a417ec7288acd7a79d92ae275c1611a84623bf44f/planemo-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "1dae1d9910625bc318b1fb72ebe4f9b6", "sha256": "150469da95e9bd16cbf9356ff8302e975d37947d4f8d1b24c3ffff4dd0bcb7c7" }, "downloads": -1, "filename": "planemo-0.8.2-py2.7.egg", "has_sig": false, "md5_digest": "1dae1d9910625bc318b1fb72ebe4f9b6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 308637, "upload_time": "2015-04-29T12:55:39", "url": "https://files.pythonhosted.org/packages/56/ab/4795cefb5d4f24b963e35a0a26efd106e8b0f0396262ffd5d57a236e75a2/planemo-0.8.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1a94879b0561d0e7ac774a158d05636c", "sha256": "dfd4e9296fecbbe5078472cb881e880f8c1e592ac6c6eef284d6766845c6e440" }, "downloads": -1, "filename": "planemo-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1a94879b0561d0e7ac774a158d05636c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 164794, "upload_time": "2015-04-29T12:55:51", "url": "https://files.pythonhosted.org/packages/ff/ac/73aa962a7a44fc84094f6d82d9113d4ff91cdb3b8ef3ed5a41e52b9d647f/planemo-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc72c659abebbcc12327ace6a9c712fa", "sha256": "b5a82ac997de75ea6be3de84b037368be8fb0741918ab5cab0940a7df69eac70" }, "downloads": -1, "filename": "planemo-0.8.2.tar.gz", "has_sig": false, "md5_digest": "fc72c659abebbcc12327ace6a9c712fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139818, "upload_time": "2015-04-29T12:55:57", "url": "https://files.pythonhosted.org/packages/0d/9d/e92e8de484eb1571f8e7c28083ea71cad07d91573d74d45fd566387465ce/planemo-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "faa3cb6d377cd56457503718adf9c954", "sha256": "5b03d4ef09316c23d5f4a1e1eb3dd67a8df52d2962d67ec31dbca36b9d831da4" }, "downloads": -1, "filename": "planemo-0.8.3-py2.7.egg", "has_sig": false, "md5_digest": "faa3cb6d377cd56457503718adf9c954", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 308777, "upload_time": "2015-04-29T20:31:38", "url": "https://files.pythonhosted.org/packages/7d/53/0cea1acc81c8fc232758863d984f307780c6df97c542cf56c9e5b8fc8369/planemo-0.8.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1657bc515e85c205a762f7c6d7a64f25", "sha256": "ac856c70fce962dd992a25e8745d84af3ec0e3273e10484e9edb6d4c50ec22ab" }, "downloads": -1, "filename": "planemo-0.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1657bc515e85c205a762f7c6d7a64f25", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 165016, "upload_time": "2015-04-29T20:31:41", "url": "https://files.pythonhosted.org/packages/7e/1c/72d8f177fd59dd3007dd8754885668108767cbc0b3cc7968bec08f086cfb/planemo-0.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "513a37bb0e0b4b410fdf79dd19be45ae", "sha256": "02976fa46af9ae06fb398b32af454acc8e355945a9ef02860340185705033bb2" }, "downloads": -1, "filename": "planemo-0.8.3.tar.gz", "has_sig": false, "md5_digest": "513a37bb0e0b4b410fdf79dd19be45ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140154, "upload_time": "2015-04-29T20:31:45", "url": "https://files.pythonhosted.org/packages/40/36/e0043bb614c755db0f068b150e628e72b25e3d33fd163c82db3f401ead09/planemo-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "68b1f3b9eb838498a295ade465a8f7c7", "sha256": "bc4eedb272245537ba2ee56ba9b8f3e3d6d9f44413f8b12b7308352ad13dba18" }, "downloads": -1, "filename": "planemo-0.8.4-py2.7.egg", "has_sig": false, "md5_digest": "68b1f3b9eb838498a295ade465a8f7c7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 308986, "upload_time": "2015-04-30T18:03:06", "url": "https://files.pythonhosted.org/packages/a0/2a/2cae9ae0a1ed15fbf07fff6b87a4a028facbf73c06877b2feccf1c4e36a7/planemo-0.8.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f181238397561983175ec5d4aff34326", "sha256": "ec96253de3b073c2bc7cec2d9b90e59927790af21f58757670b8f5be65aa2cbc" }, "downloads": -1, "filename": "planemo-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f181238397561983175ec5d4aff34326", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 165343, "upload_time": "2015-04-30T18:03:09", "url": "https://files.pythonhosted.org/packages/fc/35/6d72c7d33c9b1a02a9d9591bc9e8f5e00d7329e7f8c2c1913a406fadc21b/planemo-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c25743ffe90d68a3920830bf18885928", "sha256": "7f0aaf1748e05a94497c866d068d929842ac5535f078a756d8f13106f04f6586" }, "downloads": -1, "filename": "planemo-0.8.4.tar.gz", "has_sig": false, "md5_digest": "c25743ffe90d68a3920830bf18885928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140657, "upload_time": "2015-04-30T18:03:12", "url": "https://files.pythonhosted.org/packages/7d/9d/55755cc509d82c968284021fc2fc28dab42307c355b487475988d74b50b3/planemo-0.8.4.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "55199a7b07816c2cb175bd6b6bbdb675", "sha256": "96ae60ef62914902f65b00723416ee941772e5abec3156a6411b5953782bf50e" }, "downloads": -1, "filename": "planemo-0.9.0-py2.7.egg", "has_sig": false, "md5_digest": "55199a7b07816c2cb175bd6b6bbdb675", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 321897, "upload_time": "2015-05-04T00:16:27", "url": "https://files.pythonhosted.org/packages/41/35/4dacadc98d577bd7b491cc00c1e5dc45666bc57362ef432a8947332f916b/planemo-0.9.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c6a7bb213c5780802af0855fbd827a56", "sha256": "267d277f88d5621da03619a598e9ad291d8bc392ba87cae52f1dd49aab839ba0" }, "downloads": -1, "filename": "planemo-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6a7bb213c5780802af0855fbd827a56", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 171463, "upload_time": "2015-05-04T00:16:30", "url": "https://files.pythonhosted.org/packages/80/1e/bb9b2cdff1a3e14730ab17607fd584c4e5376b2353d174456e5f80b4bba8/planemo-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "415af4eb7c2b7390cf5db11aca41f91d", "sha256": "d05010c947ebb97e984c811a8272b24794ed4ee101c6dc6ab8f1f8481cd29c0b" }, "downloads": -1, "filename": "planemo-0.9.0.tar.gz", "has_sig": false, "md5_digest": "415af4eb7c2b7390cf5db11aca41f91d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146496, "upload_time": "2015-05-04T00:16:33", "url": "https://files.pythonhosted.org/packages/b1/07/04a5103818970757811006e38a5bd44dd6d6f66ec4fa269acd659c570077/planemo-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fc82a9fe3ad10451fe0832ba6fa70d5a", "sha256": "228b5a9a168922af41e38f4e55763ce27860655a78c95a09670962278d28f55a" }, "downloads": -1, "filename": "planemo-0.62.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc82a9fe3ad10451fe0832ba6fa70d5a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 374340, "upload_time": "2019-10-14T16:04:50", "url": "https://files.pythonhosted.org/packages/57/3e/1bd2265119ca51f9f21e39eb73bcd41c1a4e60e43a6005896bc96b718999/planemo-0.62.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e862d60cd5a556e183d4a1f33a8be473", "sha256": "5933afb0bb2d0e4baccb1e8660d288c6c494cc2a63442a798fe58ece245c742e" }, "downloads": -1, "filename": "planemo-0.62.1.tar.gz", "has_sig": false, "md5_digest": "e862d60cd5a556e183d4a1f33a8be473", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 404786, "upload_time": "2019-10-14T16:04:59", "url": "https://files.pythonhosted.org/packages/79/1b/c77745fda1b580c3d54fbbcbe0f664683a2dbfe3daee788a4f0c46c707c6/planemo-0.62.1.tar.gz" } ] }