Metadata-Version: 2.4
Name: pyBBarolo
Version: 1.3.9
Summary: A Python wrapper to BBarolo code
Author-email: Enrico Di Teodoro <enrico.diteodoro@gmail.com>
Project-URL: Homepage, https://github.com/editeodoro/Bbarolo
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: astropy
Requires-Dist: matplotlib
Requires-Dist: scipy>=1.15

<p align="center">
  <img src="http://editeodoro.github.io/Bbarolo/files/bbarolo.jpg" alt="BBlogo"/>
</p>


BBarolo is a 3D fitting tool to derive the kinematics of galaxies from emission-line observations.

Full documentation is hosted at http://bbarolo.readthedocs.io/en/latest. 


## Dependencies

Needed: FFTW3, WCSLIB, CFITSIO. 

Optional: GNUPLOT, PYTHON with ASTROPY (for output plots), QT Kit (for the GUI) 


## Installing BBarolo

Clone the repository:

````
git clone -b master --single-branch https://github.com/editeodoro/Bbarolo 
cd Bbarolo
````

Compile:
````
./configure
make
make install
 ````
Last command is optional to install BBarolo executable in a given path (default /usr/local/bin).


To compile the GUI (optional, and mostly likely it will fail): 
 ````
 make gui
````

To install Python wrapper pyBBarolo:
 ````
 make pybbinst
````

