Skip to content
Snippets Groups Projects
Select Git revision
  • e342d72328017632b604bdbe4491c614cacd13f8
  • master default
2 results

main.py

Blame
  • Forked from Brady James Garvin / meal_ordering_app
    3 commits behind the upstream repository.
    main.py 302 B
    from kivy.app import App
    
    __app_package__ = 'edu.unl.cse.soft161.order'
    __app__ = 'Order Meal'
    __version__ = '0.1'
    __flags__ = ['--bootstrap=sdl2', '--requirements=python2,kivy', '--orientation=landscape']
    
    
    class OrderApp(App):
        pass
    
    
    if __name__ == '__main__':
        app = OrderApp()
        app.run()