Newer
Older
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon May 27 17:11:01 2019
@author: rfetick
"""
from setuptools import setup, find_packages
url='https://gitlab.lam.fr/lam-grd-public/maoppy.git',
license='See LICENSE file',
author='Romain JL Fetick (LAM, Marseille, France)',
description='Modelization of the Adaptive Optics Psf in PYthon (MAOPPY)',
package_data={'maoppy': ['./maoppy/data/*.yml']},
include_package_data=True,
requires=['numpy','scipy','astropy'],
zip_safe=False)