forked from GEOS-ESM/swell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (64 loc) · 2.57 KB
/
setup.py
File metadata and controls
70 lines (64 loc) · 2.57 KB
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
61
62
63
64
65
66
67
68
69
70
# (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 os.path
import setuptools
setuptools.setup(
name='swell',
author='NASA Global Modeling and Assimilation Office',
description='Workflow suites, tasks and configuration for coupled data assimilation',
url='https://github.com/geos-esm/swell',
package_dir={'': 'src'},
packages=setuptools.find_packages(where='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=[
'click',
'jinja2>=3.0.3',
'pyyaml>=6.0',
'pycodestyle>=2.8.0',
'pandas>=1.4.0',
'isodate>=0.5.4',
'xarray>=0.11.3',
'questionary>=1.10.0',
],
package_data={
'': [
'deployment/platforms/*/modules*',
'deployment/platforms/*/*.yaml',
'suites/*',
'suites/*/*',
'suites/*/*/*',
'configuration/*',
'configuration/*/*',
'configuration/*/*/*',
'configuration/*/*/*/*',
'configuration/*/*/*/*/*',
],
},
include_package_data=True,
entry_points={
'console_scripts': [
'swell_task = swell.tasks.base.task_base:main',
'swell_create_experiment = swell.deployment.bin.swell_create_experiment:main',
'swell_prepare_experiment_config = swell.deployment.bin.swell_prepare_config:main',
'swell_launch_experiment = swell.deployment.bin.swell_launch_experiment:main',
'swell_sat_db_processing = swell.deployment.bin.swell_sat_db_processing:main',
],
},
)
# --------------------------------------------------------------------------------------------------