Go to file
gmatteo eec2583bbf Add check on deadlocked flows 2014-11-06 19:44:56 +01:00
abipy Add check on deadlocked flows 2014-11-06 19:44:56 +01:00
dev_scripts cleanup 2014-09-18 18:58:38 +02:00
docs Fix docs 2014-10-20 10:44:45 +02:00
tutorials Update scheduler.yml 2014-05-21 15:41:31 -04:00
.gitignore managers for CECI clusters 2014-11-05 21:47:52 +01:00
.pycheckrc Import abipy package from abinit source tree. 2013-06-26 15:35:22 +02:00
.travis.yml Revamped benchmarks 2014-11-02 03:10:18 +01:00
CHANGELOG Import abipy package from abinit source tree. 2013-06-26 15:35:22 +02:00
INSTALL Import abipy package from abinit source tree. 2013-06-26 15:35:22 +02:00
LICENSE Rationalize doc files 2013-06-26 16:47:14 +02:00
MANIFEST.in Add support for cython extensions in setup.py 2013-11-01 03:28:56 +01:00
README-tests.rst First version of sigresviewer (WX Gui) 2013-07-19 22:52:45 +02:00
README.rst Improve docs 2014-10-20 13:57:44 +02:00
TODO.rst Benchmark for MPI-FFT 2014-05-27 05:28:30 +02:00
circle.yml Add check on deadlocked flows 2014-11-06 19:44:56 +01:00
requirements.txt Upgrade to new version of pymatgen 2014-11-02 02:14:50 +01:00
setup.cfg cleanup 2014-09-20 02:31:09 +02:00
setup.py Changes needed for nic4 2014-11-06 14:26:00 +01:00
tox.ini Import abipy package from abinit source tree. 2013-06-26 15:35:22 +02:00

README.rst

**Official docs:** http://pythonhosted.org/abipy/

Abipy is an open-source library for analyzing the results produced by ABINIT (http://www.abinit.org), 
an open-source program for the ab-initio calculation of the physical properties of materials 
within Density Functional Theory (DFT).
Abipy is written in Python and is designed with the philosophy that you should be able to create 
simple plots with just a few commands.
Check out the the list of plotting scripts available in the 
`examples/plot <http://pythonhosted.org/abipy/examples/plot/index.html>`_ directory.

Abipy is free to use. However, we also welcome your help to improve this library by making your own contributions.  
These contributions can be in the form of additional tools or modules you develop, or even simple things 
such as bug reports. 
Please report any bugs and issues at abipy's `Github page <https://github.com/gmatteo/abipy>`_. 

Getting abipy
=============

Stable version
--------------

The version at the Python Package Index (PyPI) is always the latest stable
release that will be hopefully, be relatively bug-free. 
The easiest way to install abipy is to use easy_install or pip, as follows::

    easy_install abipy

or::

    pip install abipy


**Note**: You may need to install pymatgen before installing abipy as abipy depends on pymatgen 
Besides, abipy required additional dependencies such as netcdf4 and wxpython for the graphical interface.
Users who want to use the graphical interface are suggested to install the required python packages (wxpython)
through one of the following python distributions::

    https://www.enthought.com/products/canopy/


Developmental version
---------------------

The developmental version is at the abipy's `Github repo <https://github.com/gmatteo/abipy>`_. 
The Github version include test files for complete unit testing. 
After cloning the source, you can type::

    python setup.py install

or to install the package in developmental mode::

    python setup.py develop

To run the suite of unittests, make sure you have nose installed and then just type::

    nosetests

in the abipy root directory.


Requirements
============

All required dependencies should be automatically taken care of if you install abipy using easy_install or pip. 
Otherwise, these packages should be available on `PyPI <http://pypi.python.org>`_.

  #. Python 2.7 required (Python 3.0+ not supported) 
  #. pymatgen 2.8.7+
  #. numpy 
  #. matplotlib 1.1+
  #. scipy 0.10+
  #. netCDF4
  #. pyYaml 3.1.0+

The following packages are much easier to install with easy_install:

  #. pyYaml
  #. pyCifRW
  #. pyhull
  #. PyDispatcher

for netcdf4 and hdf see http://www.unidata.ucar.edu/software/netcdf/docs/build_default.html


Optional dependencies
---------------------

Optional libraries that are required if you need certain features:

1. wxPython - For the GUI 
2. wxmplot

Installing wxPython
-------------------

Mac users can download the

Linux users:
    TODO

The directory `abipy.gui.demos` contains demos that can be used to test the installation 
(run the script `runall.py` to have an overview of the different graphical interfaces).


Using abipy
===========

Basic usage
-----------

There are a variety of ways to use abipy, and most of them are illustrated in the `abipy/examples` directory.
Below is a brief description of the different directories found there:

  * plot - scripts showing how to produce plots with matplotlib

  * htc -  usage examples of the High-throughput API.

  * notebooks - ipython notebooks 
    (use `ipython notebook FILE` to open the notebook in your browser)

The directory `abipy/data/runs` contains scripts that can be used to automate typical ab-initio calculations.

Examples of the basic capabilities can be found in the 
`example page http://pythonhosted.org/abipy/examples/index.html`_ of the  official documentation.

Advanced Usage
--------------

Users are strongly encouraged to explore the detailed `api docs <http://pythonhosted.org/abipy/api/index.html>`_.

License
=======

Abipy is released under the GNU GPL License. The terms of the license are as follows::

    abipy is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 2.1 of the License, or
    (at your option) any later version.

    abipy is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License along with abipy.  
    If not, see <http://www.gnu.org/licenses/>.