Doc additions: roadmap, description discussion
[systematiki.git] / setup.py
blob70f8b391461ae8333cd333ca064650e453844799
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 """
4 My Big Undefined Systematics Application.
5 """
7 # Copyright (C) 2007 Felix Rabe <public@felixrabe.textdriven.com>
9 # This library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public
11 # License as published by the Free Software Foundation; either
12 # version 2.1 of the License, or (at your option) any later version.
14 # This library is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # Lesser General Public License for more details.
19 # You should have received a copy of the GNU Lesser General Public License
20 # along with this library; if not, write to the Free Software Foundation,
21 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 # Recommended line length or text width: 75 characters.
25 info = {
26 "name": "systematiki",
27 "version": "0.0.1",
28 "description": "Systematically interlinked database",
29 "long_description": __doc__.strip(),
30 "author": "Felix Rabe",
31 "author_email": "public@felixrabe.textdriven.com",
32 "url": "http://systematiki.felixrabe.net/",
33 "packages": [
34 "Systematiki",
36 "scripts": ["systematiki_client.py", "systematiki_server.py"],
37 "classifiers": [
41 def main(argv):
42 from distutils.core import setup
43 setup(**info)
44 return 0
46 if __name__ == "__main__":
47 import sys
48 sys.exit(main(sys.argv))