Skip to content
Snippets Groups Projects
setup.py 506 B
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env python3
    # -*- coding: utf-8 -*-
    """
    Created on Mon May 27 17:11:01 2019
    
    @author: rfetick
    """
    
    from setuptools import setup, find_packages
     
    setup(name='PAOMPY',
          version='0.0.1.dev',
          url='https://gitlab.lam.fr/lam-grd-public/paompy.git',
          license='See LICENSE file',
          author='Romain JL Fetick (LAM, Marseille, France)',
          description='Psf Adaptive Optics Modeling in PYthon',
          packages=find_packages(exclude=['examples','tests']),
          zip_safe=False,
          )