# HG changeset patch # User francesco_lapi # Date 1757620902 0 # Node ID d9a9e909cd9ee2c891a5bc2043632a536437e4fa # Parent e3ef5380c7273c4164f5a868e0ab780d89030833 Uploaded diff -r e3ef5380c727 -r d9a9e909cd9e COBRAxy/setup.py --- a/COBRAxy/setup.py Thu Sep 11 19:56:53 2025 +0000 +++ b/COBRAxy/setup.py Thu Sep 11 20:01:42 2025 +0000 @@ -13,13 +13,13 @@ packages=find_packages(include=["utils", "utils.*"]), py_modules=[ 'custom_data_generator', - 'flux_simulation', - 'flux_to_map', + 'ras_generator', + 'rps_generator', 'marea_cluster', 'marea', - 'ras_generator', 'ras_to_bounds', - 'rps_generator' + 'flux_simulation', + 'flux_to_map' ], include_package_data=True, install_requires=[ @@ -41,13 +41,13 @@ entry_points={ 'console_scripts': [ 'custom_data_generator=custom_data_generator:main', - 'flux_simulation=flux_simulation:main', - 'flux_to_map=flux_to_map:main', + 'ras_generator=ras_generator:main', + 'rps_generator=rps_generator:main', 'marea_cluster=marea_cluster:main', 'marea=marea:main', - 'ras_generator=ras_generator:main', 'ras_to_bounds=ras_to_bounds:main', - 'rps_generator=rps_generator:main' + 'flux_simulation=flux_simulation:main', + 'flux_to_map=flux_to_map:main' ], }, classifiers=[