Metadata-Version: 2.1
Name: rdfpy
Version: 0.1.4
Summary: rdfpy is a Python package for computing 2D and 3D radial distribution functions.
Home-page: https://github.com/by256/rdfpy
Author: Batuhan Yildirim
Author-email: by256@cam.ac.uk
License: MIT
Description: # rdfpy
        
        rdfpy is a Python package for computing fast 2D and 3D radial distribution functions. 
        
        ![Alt text](rdfpy/examples/crystal.png)
        
        
        ## Installation
        
        ```shell
        $ pip install rdfpy
        ```
        
        ## Usage
        
        ```python
        import numpy as np
        from rdfpy import rdf3d
        
        particles = np.random.uniform(0.0, 10.0, size=(1000, 3))  # random particles in a 10x10x10 box
        
        g_r, radii = rdf3d(particles, dr=0.1)
        ```
        
        ## Authors
        
        [Batuhan Yildirim](http://www.mole.phy.cam.ac.uk/people/by.php)
        
        ## License
        
        [![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](http://badges.mit-license.org)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
