|
33 | 33 |
|
34 | 34 | os.chdir(here) |
35 | 35 |
|
36 | | -for path in ['ocean', 'landice', 'visualization', 'mesh_tools']: |
| 36 | +for path in ['ocean', 'visualization']: |
37 | 37 | destPath = './{}'.format(path) |
38 | 38 | if os.path.exists(destPath): |
39 | 39 | shutil.rmtree(destPath) |
|
64 | 64 | ], |
65 | 65 | packages=find_packages(include=['mpas_tools', 'mpas_tools.*']), |
66 | 66 | package_data={'mpas_tools.viz': ['SciVisColorColormaps/*.xml']}, |
67 | | - scripts=['mesh_tools/mesh_conversion_tools/mark_horns_for_culling.py', |
68 | | - 'mesh_tools/planar_grid_transformations/set_lat_lon_fields_in_planar_grid.py', |
69 | | - 'mesh_tools/create_SCRIP_files/create_SCRIP_file_from_MPAS_mesh.py', |
70 | | - 'mesh_tools/create_SCRIP_files/create_SCRIP_file_from_planar_rectangular_grid.py', |
71 | | - 'landice/mesh_tools_li/create_landice_grid_from_generic_MPAS_grid.py', |
72 | | - 'landice/mesh_tools_li/define_cullMask.py', |
73 | | - 'landice/mesh_tools_li/interpolate_to_mpasli_grid.py', |
74 | | - 'landice/mesh_tools_li/mark_domain_boundaries_dirichlet.py', |
75 | | - 'ocean/coastline_alteration/add_land_locked_cells_to_mask.py', |
| 67 | + scripts=['ocean/coastline_alteration/add_land_locked_cells_to_mask.py', |
76 | 68 | 'ocean/coastline_alteration/widen_transect_edge_masks.py', |
77 | 69 | 'ocean/coastline_alteration/add_critical_land_blockages_to_mask.py', |
78 | 70 | 'ocean/moc_southern_boundary_extractor/moc_southern_boundary_extractor.py', |
79 | 71 | 'visualization/paraview_vtk_field_extractor/paraview_vtk_field_extractor.py'], |
80 | 72 | install_requires=install_requires, |
81 | | - entry_points={'console_scripts': |
82 | | - ['planar_hex = mpas_tools.planar_hex:main', |
83 | | - 'translate_planar_grid = mpas_tools.translate:main', |
84 | | - 'merge_grids = mpas_tools.merge_grids:main', |
85 | | - 'split_grids = mpas_tools.split_grids:main', |
86 | | - 'inject_bathymetry = mpas_tools.ocean.inject_bathymetry:main', |
87 | | - 'inject_preserve_floodplain = mpas_tools.ocean.inject_preserve_floodplain:main', |
88 | | - 'ocean_add_depth = mpas_tools.ocean.depth:main_add_depth', |
89 | | - 'ocean_add_zmid = mpas_tools.ocean.depth:main_add_zmid', |
90 | | - 'ocean_write_time_varying_zmid = mpas_tools.ocean.depth:main_write_time_varying_zmid', |
91 | | - 'plot_ocean_transects = mpas_tools.ocean.viz.transects:main', |
92 | | - 'mpas_to_triangle = mpas_tools.mesh.creation.mpas_to_triangle:main', |
93 | | - 'triangle_to_netcdf = mpas_tools.mesh.creation.triangle_to_netcdf:main', |
94 | | - 'jigsaw_to_netcdf = mpas_tools.mesh.creation.jigsaw_to_netcdf:main', |
95 | | - 'sort_mesh = mpas_tools.mesh.creation.sort_mesh:main', |
96 | | - 'scrip_from_mpas = mpas_tools.scrip.from_mpas:main', |
97 | | - 'compute_mpas_region_masks = mpas_tools.mesh.mask:entry_point_compute_mpas_region_masks', |
98 | | - 'compute_mpas_transect_masks = mpas_tools.mesh.mask:entry_point_compute_mpas_transect_masks', |
99 | | - 'compute_mpas_flood_fill_mask = mpas_tools.mesh.mask:entry_point_compute_mpas_flood_fill_mask', |
100 | | - 'compute_lon_lat_region_masks = mpas_tools.mesh.mask:entry_point_compute_lon_lat_region_masks', |
101 | | - 'compute_projection_region_masks = mpas_tools.mesh.mask:entry_point_compute_projection_grid_region_masks', |
102 | | - 'prepare_seaice_partitions = mpas_tools.seaice.partition:prepare_partitions', |
103 | | - 'create_seaice_partitions = mpas_tools.seaice.partition:create_partitions', |
104 | | - 'simple_seaice_partitions = mpas_tools.seaice.partition:simple_partitions', |
105 | | - 'vector_reconstruct = mpas_tools.vector.reconstruct:main']}) |
| 73 | + entry_points={ |
| 74 | + 'console_scripts': [ |
| 75 | + 'planar_hex = mpas_tools.planar_hex:main', |
| 76 | + 'translate_planar_grid = mpas_tools.translate:main', |
| 77 | + 'merge_grids = mpas_tools.merge_grids:main', |
| 78 | + 'split_grids = mpas_tools.split_grids:main', |
| 79 | + 'inject_bathymetry = mpas_tools.ocean.inject_bathymetry:main', |
| 80 | + 'inject_preserve_floodplain = mpas_tools.ocean.inject_preserve_floodplain:main', |
| 81 | + 'ocean_add_depth = mpas_tools.ocean.depth:main_add_depth', |
| 82 | + 'ocean_add_zmid = mpas_tools.ocean.depth:main_add_zmid', |
| 83 | + 'ocean_write_time_varying_zmid = mpas_tools.ocean.depth:main_write_time_varying_zmid', |
| 84 | + 'plot_ocean_transects = mpas_tools.ocean.viz.transects:main', |
| 85 | + 'mpas_to_triangle = mpas_tools.mesh.creation.mpas_to_triangle:main', |
| 86 | + 'triangle_to_netcdf = mpas_tools.mesh.creation.triangle_to_netcdf:main', |
| 87 | + 'jigsaw_to_netcdf = mpas_tools.mesh.creation.jigsaw_to_netcdf:main', |
| 88 | + 'sort_mesh = mpas_tools.mesh.creation.sort_mesh:main', |
| 89 | + 'scrip_from_mpas = mpas_tools.scrip.from_mpas:main', |
| 90 | + 'compute_mpas_region_masks = mpas_tools.mesh.mask:entry_point_compute_mpas_region_masks', |
| 91 | + 'compute_mpas_transect_masks = mpas_tools.mesh.mask:entry_point_compute_mpas_transect_masks', |
| 92 | + 'compute_mpas_flood_fill_mask = mpas_tools.mesh.mask:entry_point_compute_mpas_flood_fill_mask', |
| 93 | + 'compute_lon_lat_region_masks = mpas_tools.mesh.mask:entry_point_compute_lon_lat_region_masks', |
| 94 | + 'compute_projection_region_masks = mpas_tools.mesh.mask:entry_point_compute_projection_grid_region_masks', |
| 95 | + 'prepare_seaice_partitions = mpas_tools.seaice.partition:prepare_partitions', |
| 96 | + 'create_seaice_partitions = mpas_tools.seaice.partition:create_partitions', |
| 97 | + 'simple_seaice_partitions = mpas_tools.seaice.partition:simple_partitions', |
| 98 | + 'vector_reconstruct = mpas_tools.vector.reconstruct:main', |
| 99 | + 'mark_horns_for_culling = mpas_tools.mesh.mark_horns_for_culling:main', |
| 100 | + 'set_lat_lon_fields_in_planar_grid = mpas_tools.landice.set_lat_lon:main', |
| 101 | + 'create_scrip_file_from_mpas_mesh = mpas_tools.scrip.from_mpas:main', |
| 102 | + 'create_scrip_file_from_planar_rectangular_grid = mpas_tools.scrip.from_planar:main', |
| 103 | + 'create_landice_grid_from_generic_mpas_grid = mpas_tools.landice.create:create_from_generic_mpas_grid', |
| 104 | + 'define_landice_cull_mask = mpas_tools.landice.cull:define_cull_mask', |
| 105 | + 'interpolate_to_mpasli_grid = mpas_tools.landice.interpolate:interpolate_to_mpasli_grid', |
| 106 | + 'mark_domain_boundaries_dirichlet = mpas_tools.landice.boundary:mark_domain_boundaries_dirichlet', |
| 107 | + ] |
| 108 | + }) |
0 commit comments