Added Doc/past-present.html
[systematiki.git] / systematiki.py
blobd3f800c4f5aa4e28e5fc035f5985ed9a6945d2c8
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 """
4 Systematiki program.
6 This program is a command-line-driven module loader for Systematiki. It
7 provides for running any combination of one Systematiki front-end and one
8 back-end.
9 """
11 # Copyright 2007 Felix Rabe
13 # This file is part of Systematiki.
15 # Systematiki is free software; you can redistribute it and/or modify it
16 # under the terms of the GNU Lesser General Public License as published by
17 # the Free Software Foundation; either version 3 of the License, or (at
18 # your option) any later version.
20 # Systematiki is distributed in the hope that it will be useful, but
21 # WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
23 # General Public License for more details.
25 # You should have received a copy of the GNU Lesser General Public License
26 # along with Systematiki. If not, see <http://www.gnu.org/licenses/>.
29 def main(argv):
33 if __name__ == "__main__":
34 import sys
35 sys.exit(main(sys.argv))