-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
20 lines (18 loc) · 807 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import sys
from setuptools import find_packages, setup
data_files = [(sys.prefix + '/share/processflow/resources',
['resources/e3sm_diags_template_vs_model.py',
'resources/e3sm_diags_template_vs_obs.py',
'resources/amwg_template_vs_model.csh',
'resources/amwg_template_vs_obs.csh',
'resources/aprime_template_vs_obs.bash'])]
setup(
name="e3sm_processflow",
version="2.0.0",
author="Sterling Baldwin",
author_email="[email protected]",
description="E3SM Automated workflow for handling post processing and diagnostic jobs for raw model data",
scripts=["processflow.py"],
packages=find_packages(
exclude=["*.test", "*.test.*", "test.*", "test", "*_template.py"]),
data_files=data_files)