[MERGE] Merged the changelog upto 5.0.10
[odoo/odoo.git] / bin / release.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 ##############################################################################
4 #    
5 #    OpenERP, Open Source Management Solution
6 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
20 #
21 ##############################################################################
22
23 name = 'openerp-server'
24 version = '6.0dev'
25 major_version = '6.0'
26 description = 'OpenERP Server'
27 long_desc = '''\
28 OpenERP is a complete ERP and CRM. The main features are accounting (analytic
29 and financial), stock management, sales and purchases management, tasks
30 automation, marketing campaigns, help desk, POS, etc. Technical features include
31 a distributed server, flexible workflows, an object database, a dynamic GUI,
32 customizable reports, and XML-RPC interfaces.
33 '''
34 classifiers = """\
35 Development Status :: 5 - Production/Stable
36 License :: OSI Approved :: GNU General Public License (GPL)
37 Programming Language :: Python
38 """
39 url = 'http://www.openerp.com'
40 author = 'Tiny.be'
41 author_email = 'info@tiny.be'
42 support_email = 'support@openerp.com'
43 license = 'GPL-3'
44
45 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
46