{ "info": { "author": "Oliver Beckstein", "author_email": "orbeckst@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. -*- mode: rst, coding: utf-8 -*-\n.. The whole GromacsWrapper package is Copyright (c) 2009-2018 Oliver\n.. Beckstein and AUTHORS except where noted otherwise.\n\n\n========================\n README: GromacsWrapper\n========================\n\n|build| |cov| |docs| |zenodo| |PRsWelcome|\n\nA primitive Python wrapper around the Gromacs_ tools. The library is\ntested with Gromacs 4.6.5, 2018.x, 2019.x (and 2016.x also works) and\nis tested with Python 2.7 and 3.6.\n\nGromacsWrapper also provides a small library (cook book) of often-used\nrecipes and helper functions to set up MD simulations.\n\n`Documentation`_ is mostly provided through the python doc strings and\navailable at https://gromacswrapper.readthedocs.org for recent releases.\n\nThe source code is available in the `GromacsWrapper git repository`_.\n\nPlease be aware that this is **beta** software that most definitely\ncontains bugs. It is *your* responsibility to ensure that you are\nrunning simulations with sensible parameters.\n\n.. _Gromacs: http://www.gromacs.org\n.. _Documentation: \n https://gromacswrapper.readthedocs.org/en/latest/\n.. _GromacsWrapper git repository:\n https://github.com/Becksteinlab/GromacsWrapper\n.. |build| image:: https://travis-ci.org/Becksteinlab/GromacsWrapper.svg\n :target: https://travis-ci.org/Becksteinlab/GromacsWrapper\n :alt: Build Status\n.. |cov| image:: https://codecov.io/gh/Becksteinlab/GromacsWrapper/badge.svg\n :target: https://codecov.io/gh/Becksteinlab/GromacsWrapper\n :alt: Code Coverage\n :scale: 100%\n.. |zenodo| image:: https://zenodo.org/badge/13219/Becksteinlab/GromacsWrapper.svg\n :target: https://zenodo.org/badge/latestdoi/13219/Becksteinlab/GromacsWrapper\n :alt: Latest release on zenodo (with DOI)\n.. |docs| image:: https://readthedocs.org/projects/gromacswrapper/badge/?version=latest\n :target: https://gromacswrapper.readthedocs.org/en/latest/?badge=latest\n :alt: Documentation\n.. |PRsWelcome| image:: https://img.shields.io/badge/PRs-welcome-brightgreen.svg\n :target: http://makeapullrequest.com\n :alt: PRs Welcome!\n\nQuick Start\n===========\n\nGiven a PDB file ``1iee.pdb``, set up and run a simple simulation (assuming\nyou have all other input files at hand such as the MDP files)::\n\n >>> import gromacs\n >>> print(gromacs.release)\n 2018.2\n >>> help(gromacs.pdb2gmx)\n DESCRIPTION\n\n gmx pdb2gmx reads a .pdb (or .gro) file, reads some database files,\n adds hydrogens to the molecules and generates coordinates in GROMACS\n ...\n ...\n OPTIONS\n\n Options to specify input files:\n\n -f [<.gro/.g96/...>] (eiwit.pdb)\n Structure file: gro g96 pdb brk ent esp tpr\n ...\n ...\n >>> gromacs.pdb2gmx(f=\"1ake.pdb\", o=\"protein.gro\", p=\"topol.top\",\n ... ff=\"oplsaa\", water=\"tip4p\")\n >>> gromacs.editconf(f=\"protein.gro\", o=\"boxed.gro\",\n ... bt=\"dodecahedron\", d=1.5, princ=True,\n ... input=\"Protein\")\n >>> gromacs.solvate(cp=\"boxed.gro\", cs=\"tip4p\", p=\"topol.top\",\n ... o=\"solvated.gro\")\n >>> gromacs.grompp(f=\"emin.mdp\", c=\"solvated.gro\", p=\"topol.top\",\n ... o=\"emin.tpr\")\n >>> gromacs.mdrun(v=True, deffnm=\"emin\")\n >>> gromacs.grompp(f=\"md.mdp\", c=\"md.gro\", p=\"topol.top\", o=\"md.tpr\")\n >>> gromacs.mdrun(v=True, deffnm=\"md\")\n\n\n\nLicense\n=======\n\nThe **GromacsWrapper** package is made available under the terms of\nthe `GNU Public License v3`_ (or any higher version at your choice)\nexcept as noted below. See the file COPYING for the licensing terms\nfor all modules.\n\n.. _GNU Public License v3: http://www.gnu.org/licenses/gpl.html\n\nThe distribution contains third party software that is copyrighted by\nthe authors but distributed under licences compatible with this\npackage license. Where permitted and necessary, software/files were\nmodified to integrate with GromacsWrapper.\n\n\nInstallation\n============\n\nReleases\n--------\n\nThe `latest version of GromacsWrapper from PyPi`_ and can be installed\nwith ::\n\n pip install GromacsWrapper\n\n.. _`latest version of GromacsWrapper from PyPi`:\n https://pypi.org/project/GromacsWrapper/\n\nDevelopment version\n-------------------\n\nThe *master* branch in the GitHub source repository generally\ncontains useful code but nevertheless, things can break in weird and\nwonderful ways. Please report issues through the `Issue Tracker`_ and\nmention that you used the *develop branch*.\n\nTo use the *development code base*: checkout the ``master`` branch::\n\n git clone https://github.com/Becksteinlab/GromacsWrapper.git\n cd GromacsWrapper\n\nand install ::\n\n python setup.py install\n\n\n\n\nDownload and Availability\n=========================\n\nThe GromacsWrapper home page is\nhttp://github.com/Becksteinlab/GromacsWrapper. The latest release of the\npackage is being made available from https://github.com/Becksteinlab/GromacsWrapper/releases\n\nYou can also clone the `GromacsWrapper git repository`_ or fork for\nyour own development::\n\n git clone git://github.com/Becksteinlab/GromacsWrapper.git\n\nQuestions\n=========\n\nPlease ask questions in the `Issue Tracker`_ (instead of private email).\n\n\nReporting Bugs and Contributing to GromacsWrapper\n=================================================\n\nPlease use the `Issue Tracker`_ to report bugs, installation problems,\nand feature requests.\n\n**Pull requests** for bug fixes and enhancements are very welcome. See http://makeapullrequest.com for a \ngeneral introduction on how make a pull request and contribute to open source projects.\n\n.. _Issue Tracker: http://github.com/Becksteinlab/GromacsWrapper/issues\n\n\nBuilding Documentation\n======================\n\nInstall Sphinx::\n\n pip install sphinx\n\nand compile::\n\n cd package/doc/sphinx\n make html\n\n\nCiting\n======\n\n|zenodo|\n\nGromacsWrapper was written by Oliver Beckstein with contributions from\nmany other people. Please see the file AUTHORS_ for all the names.\n\nIf you find this package useful and use it in published work I'd be\ngrateful if it was acknowledged in text as\n\n \"... used GromacsWrapper (Oliver Beckstein et al,\n https://github.com/Becksteinlab/GromacsWrapper doi: 10.5281/zenodo.17901)\"\n\nor in the Acknowledgements section.\n\nThank you.\n\n.. _AUTHORS:\n https://raw.githubusercontent.com/Becksteinlab/GromacsWrapper/master/AUTHORS\n\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/GromacsWrapper/", "download_url": "https://github.com/Becksteinlab/GromacsWrapper/downloads", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Becksteinlab/GromacsWrapper", "keywords": "science Gromacs analysis 'molecular dynamics'", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "GromacsWrapper", "package_url": "https://pypi.org/project/GromacsWrapper/", "platform": "", "project_url": "https://pypi.org/project/GromacsWrapper/", "project_urls": { "Download": "https://github.com/Becksteinlab/GromacsWrapper/downloads", "Homepage": "https://github.com/Becksteinlab/GromacsWrapper" }, "release_url": "https://pypi.org/project/GromacsWrapper/0.8.0/", "requires_dist": [ "numpy (>=1.0)", "six", "numkit", "matplotlib" ], "requires_python": "", "summary": "A python wrapper around the Gromacs tools.", "version": "0.8.0" }, "last_serial": 5207035, "releases": { "0.3.2": [ { "comment_text": "", "digests": { "md5": "883cd0f2cb1e04b01d9043e24932e461", "sha256": "74f636a38e9ac9a2725daef97400a713634521f9f2d7ff74b87026f93b951fca" }, "downloads": -1, "filename": "GromacsWrapper-0.3.2-py2.7.egg", "has_sig": false, "md5_digest": "883cd0f2cb1e04b01d9043e24932e461", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 584209, "upload_time": "2013-08-07T18:19:32", "url": "https://files.pythonhosted.org/packages/0f/f8/df1a8004045339699be417cf28d7e5665e6d7cf188d37302b1c84088ffae/GromacsWrapper-0.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1eb3012ae7330a1208077a98ffa2e689", "sha256": "fc6d5b6902d9a738fae3ff0a1a91b4df356c5a835b17961eba19a336a1a86196" }, "downloads": -1, "filename": "GromacsWrapper-0.3.2.tar.gz", "has_sig": false, "md5_digest": "1eb3012ae7330a1208077a98ffa2e689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1047808, "upload_time": "2013-08-07T18:19:29", "url": "https://files.pythonhosted.org/packages/1c/82/07f897423627742edc552e6510c3403d993dee6a16568b29bb57f560d74d/GromacsWrapper-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "built for Darwin-10.8.0", "digests": { "md5": "119cc6cf62e97536e5a11753abbb914f", "sha256": "f73dcd3318072d565d8ca0a789bb2317180a8594c823b9577089a7564c1349fb" }, "downloads": -1, "filename": "GromacsWrapper-0.3.3.macosx-10.6-x86_64.tar.gz", "has_sig": false, "md5_digest": "119cc6cf62e97536e5a11753abbb914f", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 423251, "upload_time": "2015-05-24T06:31:58", "url": "https://files.pythonhosted.org/packages/bf/93/c94529f7748235ead26e081b7ba8e2ff3713b4816210962f5a6805f4d199/GromacsWrapper-0.3.3.macosx-10.6-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "dc72cd321811abc9f305484e660fcaaf", "sha256": "69e8468c35e323609beec4481d6778898390664471ef8739153acdf5ab065434" }, "downloads": -1, "filename": "GromacsWrapper-0.3.3-py2.7.egg", "has_sig": false, "md5_digest": "dc72cd321811abc9f305484e660fcaaf", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 288087, "upload_time": "2015-05-24T06:32:07", "url": "https://files.pythonhosted.org/packages/d1/6a/45248df62150c461d026222b1c6a8feee1254f8f542d44571ad0297a39b0/GromacsWrapper-0.3.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d99b279a936b030c101acb88f38e74e5", "sha256": "3d102edd63f86949d40c6d02dcac61145a54b5b1efd0ce9b9a42f913348fe1ab" }, "downloads": -1, "filename": "GromacsWrapper-0.3.3.tar.gz", "has_sig": false, "md5_digest": "d99b279a936b030c101acb88f38e74e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1050925, "upload_time": "2015-05-24T06:32:02", "url": "https://files.pythonhosted.org/packages/35/66/4c302aeef43e954027703aef79cc1b7e93d79e989d9d99d66eafa1341891/GromacsWrapper-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "3aec7818de810d5f619c199d2b470bb8", "sha256": "c29a383989b09f9d0709273eea2047d62eb81773cc4ab3cc0f55f2a33b76fdf8" }, "downloads": -1, "filename": "GromacsWrapper-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "3aec7818de810d5f619c199d2b470bb8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 591977, "upload_time": "2015-12-16T08:24:56", "url": "https://files.pythonhosted.org/packages/64/c5/6f9c0596508628078b490f4aecef8d25ec7977f8315e720a46ebe4a72688/GromacsWrapper-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "60395fd4fe1b7e7b49c22b97f2728259", "sha256": "47798351d5134218b156176d05861eedddbef3983c33e941b2fdc885637f2c6d" }, "downloads": -1, "filename": "GromacsWrapper-0.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "60395fd4fe1b7e7b49c22b97f2728259", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 295920, "upload_time": "2015-12-16T08:25:07", "url": "https://files.pythonhosted.org/packages/ff/f9/6bf4e0a4dae41c6a69bb316e8a522618f569e37b6ea1ef262ca11e9772f7/GromacsWrapper-0.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f81eca47649c4df60c11e0759445c181", "sha256": "d4ef6551a3849a6d289c7fa5e8512159a118c8e256d7001279896fe98e819e59" }, "downloads": -1, "filename": "GromacsWrapper-0.4.0.tar.gz", "has_sig": false, "md5_digest": "f81eca47649c4df60c11e0759445c181", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1051752, "upload_time": "2015-12-16T08:24:43", "url": "https://files.pythonhosted.org/packages/cd/99/ca570bede19f3a49c858a8ae94e947ba00bee60df552e765f11db69b42f9/GromacsWrapper-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "ff5db27da252b4012abcd5829f94490f", "sha256": "9eada7d1327659a95050c1f13d2d027ff5a005dd32f3e8981bb241c7797f71c7" }, "downloads": -1, "filename": "GromacsWrapper-0.5.0-py2.7.egg", "has_sig": false, "md5_digest": "ff5db27da252b4012abcd5829f94490f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 731388, "upload_time": "2016-05-24T22:23:39", "url": "https://files.pythonhosted.org/packages/48/04/c47c3b7ab4d8834c297ee4deabb5ab638884539fd46f23a581ffcebc1878/GromacsWrapper-0.5.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a7ea1fbccd1b4d96b9af8d5621499051", "sha256": "aa170b8158676f53b89ea5c7d0a11aab6ddb7cd555723358ddf23b6d6fb44266" }, "downloads": -1, "filename": "GromacsWrapper-0.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a7ea1fbccd1b4d96b9af8d5621499051", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 412318, "upload_time": "2016-05-24T22:23:46", "url": "https://files.pythonhosted.org/packages/a5/67/dec2dd69d69700289f12592961266c1a8a90eac4c091a961360a6cd55dc0/GromacsWrapper-0.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29a1b87d9e4d7067793cee4564da5568", "sha256": "3c2c15f43713d8935802188da96e38b81bc8150debdb3e6e7745b1b74364db2d" }, "downloads": -1, "filename": "GromacsWrapper-0.5.0.tar.gz", "has_sig": false, "md5_digest": "29a1b87d9e4d7067793cee4564da5568", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 708330, "upload_time": "2016-05-24T22:23:20", "url": "https://files.pythonhosted.org/packages/e4/6b/054d15e27a4ebe00534fef7e4319df3aa417aeef4d9d57ece2adede99df2/GromacsWrapper-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "adecbd3f828d48876d927d8e397c8d08", "sha256": "f2785c13b25a6b505562924a08ad812432bbbdefac13f4283dd437ae27865030" }, "downloads": -1, "filename": "GromacsWrapper-0.5.1.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "adecbd3f828d48876d927d8e397c8d08", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 1014641, "upload_time": "2016-06-29T20:50:27", "url": "https://files.pythonhosted.org/packages/b1/77/53fe38a44ca21fc0109a19e5ffee3f85db9307ae60bc51f619ebf22de70e/GromacsWrapper-0.5.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b260492531ef0f10aac35f1d36f6a314", "sha256": "81468305445cd011a50ab35b2503c2a720323887da21486f48deba3c2762ada7" }, "downloads": -1, "filename": "GromacsWrapper-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "b260492531ef0f10aac35f1d36f6a314", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1204617, "upload_time": "2016-06-29T20:50:34", "url": "https://files.pythonhosted.org/packages/f5/5b/804e8964272f2363876c893563e61a0ed3b3b3f6db929f3a96f9f0388221/GromacsWrapper-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b9a156455cdc04b50c6cbfa78a9e6cb2", "sha256": "a1e66515df9afd42391ebcbd00b48804c34252db45078f24ffc29ae63c8685da" }, "downloads": -1, "filename": "GromacsWrapper-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b9a156455cdc04b50c6cbfa78a9e6cb2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1034826, "upload_time": "2016-06-29T20:50:40", "url": "https://files.pythonhosted.org/packages/fe/c4/36e63d84bb3c68db615f7665a884563c454b4856fb1180e0774989a3aec5/GromacsWrapper-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7855f1cbfda8334ce7cc802d3a31fcd7", "sha256": "cb520cbbda51f225c5688ad5fc6bf20c79b7c2f2bc383cc7cd85439c652ddec5" }, "downloads": -1, "filename": "GromacsWrapper-0.5.1.tar.gz", "has_sig": false, "md5_digest": "7855f1cbfda8334ce7cc802d3a31fcd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1060887, "upload_time": "2016-06-29T20:50:21", "url": "https://files.pythonhosted.org/packages/35/d6/42ddf83fc37b799713172dcf513db4bbd73ecf045f057452928be246bc3e/GromacsWrapper-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "27de00becd2fff602f8f7077004e8317", "sha256": "8952ad1cac77ab05c1401ccb9dae84364f0ff9da154bc5e99c7fccc34490d83a" }, "downloads": -1, "filename": "GromacsWrapper-0.6.0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "27de00becd2fff602f8f7077004e8317", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 1018754, "upload_time": "2016-09-09T09:09:38", "url": "https://files.pythonhosted.org/packages/2e/3c/ac70551ec83243b7904ab9eecb6c1c723f0cb3aebdcf9e202657400ee822/GromacsWrapper-0.6.0.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "56e4d110dfef5b6ea845a47f5c158297", "sha256": "1016233cb97d19902f241daceb9df753c8556808474340dda7f132e3043d351a" }, "downloads": -1, "filename": "GromacsWrapper-0.6.0-py2.7.egg", "has_sig": false, "md5_digest": "56e4d110dfef5b6ea845a47f5c158297", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1208889, "upload_time": "2016-09-09T09:09:44", "url": "https://files.pythonhosted.org/packages/14/8d/fbc4c84e69dbbb4679255649796f69cc02a6be14111cf8bdc9596bbb040b/GromacsWrapper-0.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "76d94343679108d514849151d0a49fcd", "sha256": "a83120d6309de5b4fa4ae71d5a60b90aba5101569239753e5c06f4b004cb0d7e" }, "downloads": -1, "filename": "GromacsWrapper-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "76d94343679108d514849151d0a49fcd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1035896, "upload_time": "2016-09-09T09:09:51", "url": "https://files.pythonhosted.org/packages/f0/42/df783ba6989d3c4e4053f2dcb6244f508bdf9fc83a114fb7b1cae10afaed/GromacsWrapper-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4819e1ebe4edcdc4624c70e95738ac92", "sha256": "d22102b7916db173e8e9477b87245d6bb648bde5108ac0d56729f4836ef8cca8" }, "downloads": -1, "filename": "GromacsWrapper-0.6.0.tar.gz", "has_sig": false, "md5_digest": "4819e1ebe4edcdc4624c70e95738ac92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1062164, "upload_time": "2016-09-09T09:09:34", "url": "https://files.pythonhosted.org/packages/1d/9e/a17ddbb7b5eb3883c23aeffb908db75f3a53c5f23f75dbe436623c30a995/GromacsWrapper-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "ec411887e12f4f1273141f529c99c13b", "sha256": "8929c5fd848920c787ebe5e64f2dae5b65f393a59b42a9ec24e590709f4dbeb5" }, "downloads": -1, "filename": "GromacsWrapper-0.6.1-py2.7.egg", "has_sig": false, "md5_digest": "ec411887e12f4f1273141f529c99c13b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1221719, "upload_time": "2016-09-17T01:23:09", "url": "https://files.pythonhosted.org/packages/e0/78/d33323f7af1cec6bbec69beb2ade16dbf0acb092e418fbbc136b8239fe05/GromacsWrapper-0.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "41053dd71c7fafcbef575e00c78a6c8e", "sha256": "c16a15b029b5859aac886a1c8698b970456ace1d4ac26fd51d3f7f683ad52f65" }, "downloads": -1, "filename": "GromacsWrapper-0.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "41053dd71c7fafcbef575e00c78a6c8e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1041323, "upload_time": "2016-09-17T01:23:14", "url": "https://files.pythonhosted.org/packages/7d/89/1626beff2767aa84154d92cd9827a0c9facb796cfe570299015839e9b297/GromacsWrapper-0.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d95fb01cf668f932ba57bce705e51e11", "sha256": "2ca69fef4bcbcb004ad3959c5979dca70cc1295dbb1cac18a7eadfe091fdf195" }, "downloads": -1, "filename": "GromacsWrapper-0.6.1.tar.gz", "has_sig": false, "md5_digest": "d95fb01cf668f932ba57bce705e51e11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1066040, "upload_time": "2016-09-17T01:23:03", "url": "https://files.pythonhosted.org/packages/c3/a5/80e4e3514100be0781e2e5065bcf19089b7df8d0909c635d5c73402575d0/GromacsWrapper-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "b705794f2dbf369f52844a326e409d71", "sha256": "15f28f7bf38d6244aed7dcc4c0ddd186af3d13c385c11921a0aaf802f1ae48da" }, "downloads": -1, "filename": "GromacsWrapper-0.6.2.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "b705794f2dbf369f52844a326e409d71", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 1030490, "upload_time": "2017-03-23T11:41:00", "url": "https://files.pythonhosted.org/packages/3c/50/7956b36059ae8daeb6a38b503320c0cf79e66fbc917f1646e574daf7d5ab/GromacsWrapper-0.6.2.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "dd7524e242b3710d935417731fcd8f51", "sha256": "a9054a3e98edf2be1d02893ebdcd274dea2956e1cca69dcb4f0e1b4fd90de1d2" }, "downloads": -1, "filename": "GromacsWrapper-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "dd7524e242b3710d935417731fcd8f51", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1221745, "upload_time": "2017-03-23T11:41:06", "url": "https://files.pythonhosted.org/packages/22/98/a3eef95a73167ae53651d000c5c11b1460d1da857d87a8303a1b019606e1/GromacsWrapper-0.6.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6cdcd83d8a873408a7e9a1a13040912b", "sha256": "0af13fb15ab2011894b73f7f11d7e356914e5ae5d69b7e86f492e0f369e6cef4" }, "downloads": -1, "filename": "GromacsWrapper-0.6.2-py2-none-any.whl", "has_sig": false, "md5_digest": "6cdcd83d8a873408a7e9a1a13040912b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1041474, "upload_time": "2017-03-23T11:41:11", "url": "https://files.pythonhosted.org/packages/54/d2/86d38c5c5340d3e919a7a1c1fab1a9ceb32fb289177455a606e692a0c99c/GromacsWrapper-0.6.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4918a060208564f0aa44cbf53c37fb93", "sha256": "5bcd660e7bb85228a13903cb2276c45fb1a35a621a25a2c53507dceb1ef0fc09" }, "downloads": -1, "filename": "GromacsWrapper-0.6.2.tar.gz", "has_sig": false, "md5_digest": "4918a060208564f0aa44cbf53c37fb93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1066626, "upload_time": "2017-03-23T11:40:57", "url": "https://files.pythonhosted.org/packages/b4/6c/300d9aeac9ae5e6436850d6c9ac6fa542e664da389713946ec7dc6f8b53c/GromacsWrapper-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "9bad324a0a908ddbd5d9e32d7926e549", "sha256": "1c3913aa358b0a6b9327192c2d70fa76b3f8d3753ccc2475eccc4300c9e8c1fc" }, "downloads": -1, "filename": "GromacsWrapper-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9bad324a0a908ddbd5d9e32d7926e549", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 631412, "upload_time": "2018-08-09T10:10:22", "url": "https://files.pythonhosted.org/packages/93/18/c51a38ca96686276b614e8251845e8c1921efe764efd98423ace710c7d7b/GromacsWrapper-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a4318ceefec2d18fc1de8ed91f9b47f", "sha256": "ed06fb35a3d4d8213a520d685d068815d89db3ea45df4f8b7efadc96b3f10678" }, "downloads": -1, "filename": "GromacsWrapper-0.7.0.tar.gz", "has_sig": false, "md5_digest": "1a4318ceefec2d18fc1de8ed91f9b47f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 625670, "upload_time": "2018-08-09T10:10:24", "url": "https://files.pythonhosted.org/packages/d9/f2/2f573b4e2f1d674a375bb39f23088fc1b0b90d2cd9a927b1320617a0f7bc/GromacsWrapper-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "51015f0e1a56403e7ffdf4bed00c08e9", "sha256": "a5fdbcf494f9cf32cd89262341601100f3ad24f979849ba6cf30b153d68a8762" }, "downloads": -1, "filename": "GromacsWrapper-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51015f0e1a56403e7ffdf4bed00c08e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 645039, "upload_time": "2019-04-30T08:21:31", "url": "https://files.pythonhosted.org/packages/7b/a1/3f2240ace2d5ecbdf9a251fabc2f274c761522a549795ba03327d40c7a65/GromacsWrapper-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bee8694c22fc367be98660d47a62d90", "sha256": "688b9708dfc5ad118db0a2fb647cae5501d285e212e07a929e8cd2177f7042e3" }, "downloads": -1, "filename": "GromacsWrapper-0.8.0.tar.gz", "has_sig": false, "md5_digest": "1bee8694c22fc367be98660d47a62d90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177780, "upload_time": "2019-04-30T08:21:40", "url": "https://files.pythonhosted.org/packages/bf/40/9533380f268d0115da45ae2b140dda623e07764a12a9af44b25c4d32de01/GromacsWrapper-0.8.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "51015f0e1a56403e7ffdf4bed00c08e9", "sha256": "a5fdbcf494f9cf32cd89262341601100f3ad24f979849ba6cf30b153d68a8762" }, "downloads": -1, "filename": "GromacsWrapper-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51015f0e1a56403e7ffdf4bed00c08e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 645039, "upload_time": "2019-04-30T08:21:31", "url": "https://files.pythonhosted.org/packages/7b/a1/3f2240ace2d5ecbdf9a251fabc2f274c761522a549795ba03327d40c7a65/GromacsWrapper-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bee8694c22fc367be98660d47a62d90", "sha256": "688b9708dfc5ad118db0a2fb647cae5501d285e212e07a929e8cd2177f7042e3" }, "downloads": -1, "filename": "GromacsWrapper-0.8.0.tar.gz", "has_sig": false, "md5_digest": "1bee8694c22fc367be98660d47a62d90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177780, "upload_time": "2019-04-30T08:21:40", "url": "https://files.pythonhosted.org/packages/bf/40/9533380f268d0115da45ae2b140dda623e07764a12a9af44b25c4d32de01/GromacsWrapper-0.8.0.tar.gz" } ] }