freud-analysis


Namefreud-analysis JSON
Version 3.0.0 PyPI version JSON
download
home_pagehttps://github.com/glotzerlab/freud
SummaryPowerful, efficient trajectory analysis in scientific Python.
upload_time2024-02-23 14:27:48
maintainerfreud Developers
docs_urlNone
authorVyas Ramasubramani et al.
requires_python>=3.8
license
keywords simulation analysis molecular dynamics soft matter particle system computational physics
VCS
bugtrack_url
requirements numpy rowan scipy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =====
freud
=====

|Citing freud|
|PyPI|
|conda-forge|
|ReadTheDocs|
|Binder|
|GitHub-Stars|

.. |Citing freud| image:: https://img.shields.io/badge/cite-freud-informational.svg
   :target: https://freud.readthedocs.io/en/stable/reference/citing.html
.. |PyPI| image:: https://img.shields.io/pypi/v/freud-analysis.svg
   :target: https://pypi.org/project/freud-analysis/
.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/freud.svg
   :target: https://anaconda.org/conda-forge/freud
.. |ReadTheDocs| image:: https://readthedocs.org/projects/freud/badge/?version=latest
   :target: https://freud.readthedocs.io/en/latest/?badge=latest
.. |Binder| image:: https://mybinder.org/badge_logo.svg
   :target: https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb
.. |GitHub-Stars| image:: https://img.shields.io/github/stars/glotzerlab/freud.svg?style=social
   :target: https://github.com/glotzerlab/freud

Overview
========

The **freud** Python library provides a simple, flexible, powerful set of tools
for analyzing trajectories obtained from molecular dynamics or Monte Carlo
simulations. High performance, parallelized C++ is used to compute standard
tools such as radial distribution functions, correlation functions, order
parameters, and clusters, as well as original analysis methods including
potentials of mean force and torque (PMFTs) and local environment matching. The
**freud** library supports
`many input formats <https://freud.readthedocs.io/en/stable/topics/datainputs.html>`__
and outputs `NumPy arrays <https://numpy.org/>`__, enabling integration
with the scientific Python ecosystem for many typical materials science
workflows.

Resources
=========

- `Reference Documentation <https://freud.readthedocs.io/>`__: Examples, tutorials, topic guides, and package Python APIs.
- `Installation Guide <https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__: Instructions for installing and compiling **freud**.
- `freud discussion board <https://github.com/glotzerlab/freud/discussions/>`__: Ask the **freud** user community for help.
- `GitHub repository <https://github.com/glotzerlab/freud>`__: Download the **freud** source code.
- `Issue tracker <https://github.com/glotzerlab/freud/issues>`__: Report issues or request features.

Related Tools
=============

- `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__: Perform MD / MC simulations that can be analyzed with **freud**.
- `signac <https://signac.io/>`__: Manage your workflow with **signac**.

Citation
========

When using **freud** to process data for publication, please `use this citation
<https://freud.readthedocs.io/en/stable/reference/citing.html>`__.


Installation
============

The easiest ways to install **freud** are using pip:

.. code:: bash

   pip install freud-analysis

or conda:

.. code:: bash

   conda install -c conda-forge freud

**freud** is also available via containers for `Docker
<https://hub.docker.com/r/glotzerlab/software>`__ or `Singularity
<https://glotzerlab.engin.umich.edu/downloads/glotzerlab>`__.  If you need more detailed
information or wish to install **freud** from source, please refer to the
`Installation Guide
<https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__ to compile
**freud** from source.


Examples
========

The **freud** library is called using Python scripts. Many core features are
`demonstrated in the freud documentation
<https://freud.readthedocs.io/en/stable/examples.html>`_. The examples come in
the form of Jupyter notebooks, which can also be downloaded from the `freud
examples repository <https://github.com/glotzerlab/freud-examples>`_ or
`launched interactively on Binder
<https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb>`_.
Below is a sample script that computes the radial distribution function for a
simulation run with `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__ and
saved into a `GSD file <https://gsd.readthedocs.io/>`_.

.. code:: python

   import freud
   import gsd.hoomd

   # Create a freud compute object (RDF is the canonical example)
   rdf = freud.density.RDF(bins=50, r_max=5)

   # Load a GSD trajectory (see docs for other formats)
   traj = gsd.hoomd.open('trajectory.gsd', 'rb')
   for frame in traj:
       rdf.compute(system=frame, reset=False)

   # Get bin centers, RDF data from attributes
   r = rdf.bin_centers
   y = rdf.rdf


Support and Contribution
========================

Please visit our repository on `GitHub <https://github.com/glotzerlab/freud>`__ for the library source code.
Any issues or bugs may be reported at our `issue tracker <https://github.com/glotzerlab/freud/issues>`__, while questions and discussion can be directed to our `discussion board <https://github.com/glotzerlab/freud/discussions/>`__.
All contributions to **freud** are welcomed via pull requests!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/glotzerlab/freud",
    "name": "freud-analysis",
    "maintainer": "freud Developers",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "freud-developers@umich.edu",
    "keywords": "simulation analysis molecular dynamics soft matter particle system computational physics",
    "author": "Vyas Ramasubramani et al.",
    "author_email": "vramasub@umich.edu",
    "download_url": "https://files.pythonhosted.org/packages/b9/b1/87401b075d8dfa4c12cbe03e0c0919445f19d8e3ec8472d6d855660004bb/freud-analysis-3.0.0.tar.gz",
    "platform": null,
    "description": "=====\nfreud\n=====\n\n|Citing freud|\n|PyPI|\n|conda-forge|\n|ReadTheDocs|\n|Binder|\n|GitHub-Stars|\n\n.. |Citing freud| image:: https://img.shields.io/badge/cite-freud-informational.svg\n   :target: https://freud.readthedocs.io/en/stable/reference/citing.html\n.. |PyPI| image:: https://img.shields.io/pypi/v/freud-analysis.svg\n   :target: https://pypi.org/project/freud-analysis/\n.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/freud.svg\n   :target: https://anaconda.org/conda-forge/freud\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/freud/badge/?version=latest\n   :target: https://freud.readthedocs.io/en/latest/?badge=latest\n.. |Binder| image:: https://mybinder.org/badge_logo.svg\n   :target: https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb\n.. |GitHub-Stars| image:: https://img.shields.io/github/stars/glotzerlab/freud.svg?style=social\n   :target: https://github.com/glotzerlab/freud\n\nOverview\n========\n\nThe **freud** Python library provides a simple, flexible, powerful set of tools\nfor analyzing trajectories obtained from molecular dynamics or Monte Carlo\nsimulations. High performance, parallelized C++ is used to compute standard\ntools such as radial distribution functions, correlation functions, order\nparameters, and clusters, as well as original analysis methods including\npotentials of mean force and torque (PMFTs) and local environment matching. The\n**freud** library supports\n`many input formats <https://freud.readthedocs.io/en/stable/topics/datainputs.html>`__\nand outputs `NumPy arrays <https://numpy.org/>`__, enabling integration\nwith the scientific Python ecosystem for many typical materials science\nworkflows.\n\nResources\n=========\n\n- `Reference Documentation <https://freud.readthedocs.io/>`__: Examples, tutorials, topic guides, and package Python APIs.\n- `Installation Guide <https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__: Instructions for installing and compiling **freud**.\n- `freud discussion board <https://github.com/glotzerlab/freud/discussions/>`__: Ask the **freud** user community for help.\n- `GitHub repository <https://github.com/glotzerlab/freud>`__: Download the **freud** source code.\n- `Issue tracker <https://github.com/glotzerlab/freud/issues>`__: Report issues or request features.\n\nRelated Tools\n=============\n\n- `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__: Perform MD / MC simulations that can be analyzed with **freud**.\n- `signac <https://signac.io/>`__: Manage your workflow with **signac**.\n\nCitation\n========\n\nWhen using **freud** to process data for publication, please `use this citation\n<https://freud.readthedocs.io/en/stable/reference/citing.html>`__.\n\n\nInstallation\n============\n\nThe easiest ways to install **freud** are using pip:\n\n.. code:: bash\n\n   pip install freud-analysis\n\nor conda:\n\n.. code:: bash\n\n   conda install -c conda-forge freud\n\n**freud** is also available via containers for `Docker\n<https://hub.docker.com/r/glotzerlab/software>`__ or `Singularity\n<https://glotzerlab.engin.umich.edu/downloads/glotzerlab>`__.  If you need more detailed\ninformation or wish to install **freud** from source, please refer to the\n`Installation Guide\n<https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__ to compile\n**freud** from source.\n\n\nExamples\n========\n\nThe **freud** library is called using Python scripts. Many core features are\n`demonstrated in the freud documentation\n<https://freud.readthedocs.io/en/stable/examples.html>`_. The examples come in\nthe form of Jupyter notebooks, which can also be downloaded from the `freud\nexamples repository <https://github.com/glotzerlab/freud-examples>`_ or\n`launched interactively on Binder\n<https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb>`_.\nBelow is a sample script that computes the radial distribution function for a\nsimulation run with `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__ and\nsaved into a `GSD file <https://gsd.readthedocs.io/>`_.\n\n.. code:: python\n\n   import freud\n   import gsd.hoomd\n\n   # Create a freud compute object (RDF is the canonical example)\n   rdf = freud.density.RDF(bins=50, r_max=5)\n\n   # Load a GSD trajectory (see docs for other formats)\n   traj = gsd.hoomd.open('trajectory.gsd', 'rb')\n   for frame in traj:\n       rdf.compute(system=frame, reset=False)\n\n   # Get bin centers, RDF data from attributes\n   r = rdf.bin_centers\n   y = rdf.rdf\n\n\nSupport and Contribution\n========================\n\nPlease visit our repository on `GitHub <https://github.com/glotzerlab/freud>`__ for the library source code.\nAny issues or bugs may be reported at our `issue tracker <https://github.com/glotzerlab/freud/issues>`__, while questions and discussion can be directed to our `discussion board <https://github.com/glotzerlab/freud/discussions/>`__.\nAll contributions to **freud** are welcomed via pull requests!\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Powerful, efficient trajectory analysis in scientific Python.",
    "version": "3.0.0",
    "project_urls": {
        "Documentation": "https://freud.readthedocs.io/",
        "Download": "https://pypi.org/project/freud-analysis/",
        "Homepage": "https://github.com/glotzerlab/freud",
        "Issue Tracker": "https://github.com/glotzerlab/freud/issues",
        "Source Code": "https://github.com/glotzerlab/freud"
    },
    "split_keywords": [
        "simulation",
        "analysis",
        "molecular",
        "dynamics",
        "soft",
        "matter",
        "particle",
        "system",
        "computational",
        "physics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84fd9d15202a20b55eca21279c4e0d23796cfb157c6d4285227cee8331e4c7e9",
                "md5": "59dbe59cefd16fcdfb31fbb5481a842d",
                "sha256": "9712f2673de909ce0db2fa6560326afd753b5b1cdf564ba70d7d882e6328f33e"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59dbe59cefd16fcdfb31fbb5481a842d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2158388,
            "upload_time": "2024-02-23T14:27:13",
            "upload_time_iso_8601": "2024-02-23T14:27:13.456036Z",
            "url": "https://files.pythonhosted.org/packages/84/fd/9d15202a20b55eca21279c4e0d23796cfb157c6d4285227cee8331e4c7e9/freud_analysis-3.0.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "285a5c4deca4ca2bccbb86fa8adfb4a1465dc3240804419d5be0f63eb8e069ce",
                "md5": "a5d8114f4298375008996c51dabcba58",
                "sha256": "20da544dcdbdeb36e24e338c8d9bdd87e3e6a933d58eadf46af7a13c8db02103"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a5d8114f4298375008996c51dabcba58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1923828,
            "upload_time": "2024-02-23T14:27:16",
            "upload_time_iso_8601": "2024-02-23T14:27:16.300950Z",
            "url": "https://files.pythonhosted.org/packages/28/5a/5c4deca4ca2bccbb86fa8adfb4a1465dc3240804419d5be0f63eb8e069ce/freud_analysis-3.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65af588b705246eb09bff91ddcf09c80503dd0b1e7f7bc8e14ac97f2a2f8447b",
                "md5": "f8b31dea2310e146159af4647a73e503",
                "sha256": "13691febaf550e41861486612f83a636ca364fb62d7aa537368decd8cf26190e"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8b31dea2310e146159af4647a73e503",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2798034,
            "upload_time": "2024-02-23T14:27:19",
            "upload_time_iso_8601": "2024-02-23T14:27:19.013254Z",
            "url": "https://files.pythonhosted.org/packages/65/af/588b705246eb09bff91ddcf09c80503dd0b1e7f7bc8e14ac97f2a2f8447b/freud_analysis-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b09c8fc7b156d1547d8b3acd3a5583714c9a8553f6887f4f2d73e521f43007af",
                "md5": "7486e779f069538bb446f437aa6662bb",
                "sha256": "826574ae30e9760925a86c28a0f19fb6f35d3d82fee222e096c595b43723cea7"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7486e779f069538bb446f437aa6662bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2162170,
            "upload_time": "2024-02-23T14:27:21",
            "upload_time_iso_8601": "2024-02-23T14:27:21.036902Z",
            "url": "https://files.pythonhosted.org/packages/b0/9c/8fc7b156d1547d8b3acd3a5583714c9a8553f6887f4f2d73e521f43007af/freud_analysis-3.0.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ce01c19682bbc3bf69ebf65488617911434a99444c7112c96706f691698ff71",
                "md5": "e9d9e17524413a031e17dc7487d0f5b0",
                "sha256": "d40c68a31164b70775feec856b065b31674a11dcd3e5b95d83b189cb25cf1162"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e9d9e17524413a031e17dc7487d0f5b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1927000,
            "upload_time": "2024-02-23T14:27:24",
            "upload_time_iso_8601": "2024-02-23T14:27:24.807483Z",
            "url": "https://files.pythonhosted.org/packages/4c/e0/1c19682bbc3bf69ebf65488617911434a99444c7112c96706f691698ff71/freud_analysis-3.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9721d0137fb4218c74daf963f0589ec439738b2343e4c6b2c2a27af2925b967d",
                "md5": "46f091225aa860d3def6ed570027ab31",
                "sha256": "bcc6ad19836d464fb6c00a685729f61b2e6284d0ffa384fa8e9dec4822822b54"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46f091225aa860d3def6ed570027ab31",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2786713,
            "upload_time": "2024-02-23T14:27:27",
            "upload_time_iso_8601": "2024-02-23T14:27:27.278424Z",
            "url": "https://files.pythonhosted.org/packages/97/21/d0137fb4218c74daf963f0589ec439738b2343e4c6b2c2a27af2925b967d/freud_analysis-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db6e046562bad98357633d1a01c08880e4c1f62c57d6981099a5ee1e58fecadf",
                "md5": "45defd30e59a8bcbe2fc290b79c79dee",
                "sha256": "d0ff24fff86dc4fb91f7673237ff1860d48560e47de6b5139427e036a665b875"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45defd30e59a8bcbe2fc290b79c79dee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2177961,
            "upload_time": "2024-02-23T14:27:28",
            "upload_time_iso_8601": "2024-02-23T14:27:28.915605Z",
            "url": "https://files.pythonhosted.org/packages/db/6e/046562bad98357633d1a01c08880e4c1f62c57d6981099a5ee1e58fecadf/freud_analysis-3.0.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c26af181354908f444bec69232c56065cb8ead209f2f5129d89bd6282da8001",
                "md5": "14222f6484ee919a8bc6d3ff6ccad1eb",
                "sha256": "3f56dc5e1d946c3bc69fc124e7d7102f988f661a06e1e84efc21210503ddd6c2"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "14222f6484ee919a8bc6d3ff6ccad1eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1934568,
            "upload_time": "2024-02-23T14:27:31",
            "upload_time_iso_8601": "2024-02-23T14:27:31.225985Z",
            "url": "https://files.pythonhosted.org/packages/6c/26/af181354908f444bec69232c56065cb8ead209f2f5129d89bd6282da8001/freud_analysis-3.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5865b99f211c1a32a06050f6f72018b6a5153e6ee961f2ddfec93662c3a2dee9",
                "md5": "228725bdcb4088cb1da4afe77abe9020",
                "sha256": "eeb4da7487fe434675bcb4b43d380680f1054e146680f82e9eab21e1fb89185f"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "228725bdcb4088cb1da4afe77abe9020",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2727750,
            "upload_time": "2024-02-23T14:27:33",
            "upload_time_iso_8601": "2024-02-23T14:27:33.680502Z",
            "url": "https://files.pythonhosted.org/packages/58/65/b99f211c1a32a06050f6f72018b6a5153e6ee961f2ddfec93662c3a2dee9/freud_analysis-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "929807c050a03bcb9ea5db4766d61edb3dd0c98d78ee66189230837307cd04cc",
                "md5": "93e1a1cafd3635217cc8c8b257521ceb",
                "sha256": "7a0c6a266756a3b61fe40bff20e7a1714628583e3d127a970c788682288e6da3"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp38-cp38-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93e1a1cafd3635217cc8c8b257521ceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2168896,
            "upload_time": "2024-02-23T14:27:36",
            "upload_time_iso_8601": "2024-02-23T14:27:36.373844Z",
            "url": "https://files.pythonhosted.org/packages/92/98/07c050a03bcb9ea5db4766d61edb3dd0c98d78ee66189230837307cd04cc/freud_analysis-3.0.0-cp38-cp38-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51f3bc8e2c9a25f9aeb338b63eca34c1967834544a02543498757465270e00d0",
                "md5": "a816cc13a295134dff571af028c6affa",
                "sha256": "a67bf423ad28e1a6d1f40ba719992a9a19376e89f0de6e6a95bca408b6287951"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a816cc13a295134dff571af028c6affa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1920032,
            "upload_time": "2024-02-23T14:27:38",
            "upload_time_iso_8601": "2024-02-23T14:27:38.270002Z",
            "url": "https://files.pythonhosted.org/packages/51/f3/bc8e2c9a25f9aeb338b63eca34c1967834544a02543498757465270e00d0/freud_analysis-3.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd5bb6b7e7cdec28ba2e3c866b50b2bfd6c81b02b34b619f024db10853264591",
                "md5": "9d20d22d50d38eec467a00752f9a0733",
                "sha256": "bd2d0c8152a21feea310c1654468c15269ea6d5bc1de20600ef9ecb7cde4b2f1"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d20d22d50d38eec467a00752f9a0733",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2801745,
            "upload_time": "2024-02-23T14:27:39",
            "upload_time_iso_8601": "2024-02-23T14:27:39.897423Z",
            "url": "https://files.pythonhosted.org/packages/fd/5b/b6b7e7cdec28ba2e3c866b50b2bfd6c81b02b34b619f024db10853264591/freud_analysis-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb69ee98ab3ff3a3a32291fba674091aafbb38aa913e4fa2f5da4b87965fde92",
                "md5": "d9ff16eabeee6e8522eb802f84dfb2b4",
                "sha256": "a65677d6899a2ed18be7f84e4ce3f32bcbf338f6e6418bf5ae09c70820f797c7"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9ff16eabeee6e8522eb802f84dfb2b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2163542,
            "upload_time": "2024-02-23T14:27:41",
            "upload_time_iso_8601": "2024-02-23T14:27:41.942682Z",
            "url": "https://files.pythonhosted.org/packages/fb/69/ee98ab3ff3a3a32291fba674091aafbb38aa913e4fa2f5da4b87965fde92/freud_analysis-3.0.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ac32ff2667dbe3229aecf442aaf1d74997520af8e5467095dacb9344558aee8",
                "md5": "4ffc68927989d0e7fda570227a2d6ab5",
                "sha256": "350adae13f6f0ff046562749db7a5f45021072c9ababa76399d39934fd43c65d"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ffc68927989d0e7fda570227a2d6ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1928270,
            "upload_time": "2024-02-23T14:27:43",
            "upload_time_iso_8601": "2024-02-23T14:27:43.578842Z",
            "url": "https://files.pythonhosted.org/packages/0a/c3/2ff2667dbe3229aecf442aaf1d74997520af8e5467095dacb9344558aee8/freud_analysis-3.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db95c86b897deab0c8f5a9862b6a2d177723082af5a68e41ece920761001fdbf",
                "md5": "8e3e9fb3fe2087211211ab2dd43b9165",
                "sha256": "dc8fb7021932c37a4cb029b539727eb379808bfd58e08c0249b3c94fa39f2c95"
            },
            "downloads": -1,
            "filename": "freud_analysis-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e3e9fb3fe2087211211ab2dd43b9165",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2798128,
            "upload_time": "2024-02-23T14:27:46",
            "upload_time_iso_8601": "2024-02-23T14:27:46.109992Z",
            "url": "https://files.pythonhosted.org/packages/db/95/c86b897deab0c8f5a9862b6a2d177723082af5a68e41ece920761001fdbf/freud_analysis-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9b187401b075d8dfa4c12cbe03e0c0919445f19d8e3ec8472d6d855660004bb",
                "md5": "d27e31283fa1c66dea65b14b5541a277",
                "sha256": "425a1372da7d94baa075b051554a0da0a263a965a0f5a15c31383dfd30cc536e"
            },
            "downloads": -1,
            "filename": "freud-analysis-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d27e31283fa1c66dea65b14b5541a277",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3350764,
            "upload_time": "2024-02-23T14:27:48",
            "upload_time_iso_8601": "2024-02-23T14:27:48.634762Z",
            "url": "https://files.pythonhosted.org/packages/b9/b1/87401b075d8dfa4c12cbe03e0c0919445f19d8e3ec8472d6d855660004bb/freud-analysis-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-23 14:27:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "glotzerlab",
    "github_project": "freud",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.14"
                ]
            ]
        },
        {
            "name": "rowan",
            "specs": [
                [
                    ">=",
                    "1.2.1"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.1"
                ]
            ]
        }
    ],
    "lcname": "freud-analysis"
}
        
Elapsed time: 0.18859s