Metadata-Version: 2.1
Name: pointgroup
Version: 0.4
Summary: pointgroup module
Home-page: https://github.com/abelcarreras/pointgroup
Author: Abel Carreras
Author-email: abelcarreras83@gmail.com
License: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE

[![Test & upload to PyPI](https://github.com/abelcarreras/pointgroup/actions/workflows/python-publish.yml/badge.svg)](https://github.com/abelcarreras/pointgroup/actions/workflows/python-publish.yml)
[![PyPI version](https://badge.fury.io/py/pointgroup.svg)](https://badge.fury.io/py/pointgroup)

PointGroup
==========
Small utility to determine the point symmetry group of molecular geometries

Features
--------
- Get point symmetry group label
- Pure python implementation

Requisites
----------
- numpy


Simple example
--------------
```python
from pointgroup import PointGroup


pg = PointGroup(positions=[[ 0.000000,  0.000000,  0.000000],
                           [ 0.000000,  0.000000,  1.561000],
                           [ 0.000000,  1.561000,  0.000000],
                           [ 0.000000,  0.000000, -1.561000],
                           [ 0.000000, -1.561000,  0.000000],
                           [ 1.561000,  0.000000,  0.000000],
                           [-1.561000,  0.000000,  0.000000]], 
                symbols=['S', 'F', 'F', 'F', 'F', 'F', 'F'])

print('Point group: ', pg.get_point_group())
```

Acknowledgments
---------------
This utility adapts a code originally written by Efrem Bernuz

Contact info
------------
Abel Carreras  
abelcarreras83@gmail.com

Donostia International Physics Center (DIPC)  
Donostia-San Sebastian (Spain)
