Shifted ET import; new S.DB.Classes
[systematiki.git] / setup.py
blob7adec00803d507f4287e74ee60aa7878c3bc8bc5
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 info = {
24 "name": "systematiki",
25 "version": "0.0.1",
26 "description": "Systematically interlinked database",
27 "long_description": __doc__.strip(),
28 "author": "Felix Rabe",
29 "author_email": "public@felixrabe.textdriven.com",
30 "url": "http://systematiki.felixrabe.net/",
31 "packages": [
32 "Systematiki",
34 "scripts": ["systematiki_client.py", "systematiki_server.py"],
35 "classifiers": [
39 def main(argv):
40 from distutils.core import setup
41 setup(**info)
42 return 0
44 if __name__ == "__main__":
45 import sys
46 sys.exit(main(sys.argv))