forked from insarlab/PyAPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
############################################################
# Program is part of PyAPS #
# Copyright 2012, by the California Institute of Technology#
# Contact: [email protected] #
# Modified by A. Benoit and R. Jolivet 2019 #
# Ecole Normale Superieure, Paris #
# Contact: [email protected] #
############################################################
# always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='pyaps3',
version='1.0',
description="Python based Atmospheric Phase Screen Estimation",
url="https://github.com/AngeliqueBenoit/pyaps3",
author="Angelique Benoit, Romain Jolivet",
author_email="[email protected]",
# package discovery
packages=find_packages(),
# dependencies
install_requires=[
'cdsapi',
'ecCodes',
'matplotlib',
'netcdf4',
'numpy',
'pygrib',
#'pyhdf', #for MERRA
'scipy',
],
# data files
include_package_data=True,
package_data={'': ['*.cfg']},
)