Package orm2 :: Module setup
[hide private]
[frames] | no frames]

Source Code for Module orm2.setup

 1  #!/usr/bin/env python 
 2  # -*- coding: iso-8859-1 -*- 
 3   
 4  ##  This file is part of orm, The Object Relational Membrane Version 2. 
 5  ## 
 6  ##  Copyright 2002-2006 by Diedrich Vorberg <diedrich@tux4web.de> 
 7  ## 
 8  ##  All Rights Reserved 
 9  ## 
10  ##  For more Information on orm see the README file. 
11  ## 
12  ##  This program is free software; you can redistribute it and/or modify 
13  ##  it under the terms of the GNU General Public License as published by 
14  ##  the Free Software Foundation; either version 2 of the License, or 
15  ##  (at your option) any later version. 
16  ## 
17  ##  This program is distributed in the hope that it will be useful, 
18  ##  but WITHOUT ANY WARRANTY; without even the implied warranty of 
19  ##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
20  ##  GNU General Public License for more details. 
21  ## 
22  ##  You should have received a copy of the GNU General Public License 
23  ##  along with this program; if not, write to the Free Software 
24  ##  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
25  ## 
26  ##  I have added a copy of the GPL in the file COPYING 
27   
28  # Changelog 
29  # --------- 
30  # 
31  # $Log: setup.py,v $ 
32  # Revision 1.5  2006/05/13 17:56:44  diedrich 
33  # orm2a4 
34  # 
35  # Revision 1.4  2006/05/11 15:42:34  diedrich 
36  # orm2a3 
37  # 
38  # Revision 1.3  2006/05/02 13:55:09  diedrich 
39  # Updated for orm2 
40  # 
41  # Revision 1.2  2006/02/25 00:20:20  diedrich 
42  # - Added and tested the ability to use multiple column primary keys. 
43  # - Some small misc bugs. 
44  # 
45  # Revision 1.1.1.1  2005/11/20 14:55:46  diedrich 
46  # Initial import 
47  # 
48  # 
49  # 
50   
51  from distutils.core import setup 
52   
53  setup (name = "orm2", 
54         version = "2a4", 
55         description = "The Object Relational Membrane v2", 
56         author = "Diedrich Vorberg", 
57         author_email = "diedrich@tux4web.de", 
58         url = "http://orm.nongnu.org/", 
59         packages = ['orm2', 'orm2.adapters', 'orm2.adapters.pgsql', 
60                     'orm2.adapters.mysql', 'orm2.adapters.firebird', 
61                     'orm2.adapters.gadfly', 'orm2.util', 'orm.ui', 
62                     'orm.ui.wrappers'], 
63         package_dir = {"orm2": "."}) 
64