Mentions légales du service

Skip to content
Snippets Groups Projects

Remove redundant scripts

Closed Raphaël Bleuse requested to merge remove-redundant-scripts into master
2 files
+ 0
20
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 8d39a394
    Remove redundant scripts · 8d39a394
    Raphaël Bleuse authored
    This commit removes `launcher.py` and `launch_expe.py` as they are
    redundant with the console scripts defined in setup.py.
    
    Namely, `launcher.py` is installed as `pybatsim` and `launch_expe.py` is
    installed as `pybatsim-experiment`.
+ 0
10
#!/usr/bin/env python3
'''
Run PyBatsim experiments.
'''
import sys
from batsim.cmds.experiments import main
if __name__ == "__main__":
sys.exit(main())
Loading