Skip to content
Snippets Groups Projects
Commit 0b5534ba authored by FETICK Romain's avatar FETICK Romain
Browse files

Create project' structure

parent 59a731c1
No related branches found
No related tags found
No related merge requests found
Pipeline #1187 canceled
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon May 27 17:15:07 2019
@author: rfetick
"""
import sys as _sys
import warnings as _warnings
if _sys.version_info[0]<3:
_warnings.warn("PAOMPY was developped on Python 3, but your Python version is anterior. We hope everything will be fine")
# STORM release version
__version__ = "1.0.0"
__author__ = "Romain JL. Fétick (LAM, France)"
__date__ = "May 27 2019"
from . import config, utils, instrument, telemetry, psfmodel
setup.py 0 → 100644
#!/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,
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment