forked from JCSDA-internal/eva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (54 loc) · 1.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# (C) Copyright 2021-2022 United States Government as represented by the Administrator of the
# National Aeronautics and Space Administration. All Rights Reserved.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# --------------------------------------------------------------------------------------------------
# Setup and installation script
#
# Usage: pip install --prefix=/path/to/install .
# --------------------------------------------------------------------------------------------------
import setuptools
setuptools.setup(
name='eva',
version='1.3',
author='Community owned code',
description='Evaluation and Verification of an Analysis',
url='https://github.com/JCSDA-internal/eva',
package_dir={'': 'src'},
packages=setuptools.find_packages('src'),
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent'],
python_requires='>=3.6',
install_requires=[
'pyyaml>=6.0',
'pycodestyle>=2.8.0',
'netCDF4>=1.5.3',
'matplotlib>=3.5.2',
'cartopy>=0.18.0',
'scikit-learn>=1.0.2',
'xarray>=0.11.3',
'emcpy @ git+https://github.com/NOAA-EMC/' +
'emcpy@4f36baf1a2302fb0daa49bd8415bb7d2a65347bb#egg=emcpy',
],
package_data={
'': [
'tests/config/*',
'tests/data/*',
'defaults/*.yaml'
],
},
entry_points={
'console_scripts': [
'eva = eva.eva_base:main',
'eva_tests = eva.eva_tests:main',
],
},
)
# --------------------------------------------------------------------------------------------------