run.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Copyright (C) 2014, Paul Munday.
  5. PO Box 28228, Portland, OR, USA 97228
  6. paul at paulmunday.net
  7. This program is free software: you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation, either version 3 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. There should also be a copy of the GPL in src/license.md that should be accessib
  18. le by going to <a href ="/license">/license<a> on this site.
  19. As originally distributed this program will be able to display its own source co
  20. de, which may count as conveying under the terms of the GPL v3. You should there
  21. fore make sure the copy of the GPL (i.e. src/license.md) is left in place.
  22. You are also free to remove this section from the code as long as any modified c
  23. opy you distribute (including a copy that is unchanged except for removal of thi
  24. s feature) is also licensed under the GPL version 3 (or later versions).
  25. None of this means you have to license your own content this way, only the origi
  26. nal source code and any modifications, or any subsequent additions that have bee
  27. n explicitly licensed under the GPL version 3 or later.
  28. You are therefore free to add templates and style sheets under your own terms th
  29. ough I would be happy if you chose to license them in the same way.
  30. """
  31. from monomotapa import app
  32. if __name__ == "__main__":
  33. app.run()