Skip to content
Snippets Groups Projects
setup.py 689 B
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
 
FETICK Romain's avatar
FETICK Romain committed
setup(name='MAOPPY',
rfetick's avatar
rfetick committed
      version='1.3.0',
FETICK Romain's avatar
FETICK Romain committed
      url='https://gitlab.lam.fr/lam-grd-public/maoppy.git',
      license='See LICENSE file',
      author='Romain JL Fetick (LAM, Marseille, France)',
FETICK Romain's avatar
FETICK Romain committed
      author_email='romain.fetick@lam.fr',
FETICK Romain's avatar
FETICK Romain committed
      description='Modelization of the Adaptive Optics Psf in PYthon (MAOPPY)',
rfetick's avatar
rfetick committed
      package_data={'maoppy': ['./maoppy/data/*.yml']},
      include_package_data=True,
FETICK Romain's avatar
FETICK Romain committed
      packages=find_packages(exclude=['example','test']),
FETICK Romain's avatar
FETICK Romain committed
      requires=['numpy','scipy','astropy'],
      zip_safe=False)