[REL] bumped up version number for 6.0.1 release
[odoo/odoo.git] / bin / release.py
1 #!/usr/bin/env python
2 # -*- encoding: utf-8 -*-
3 ##############################################################################
4 #
5 #    OpenERP, Open Source Management Solution
6 #    Copyright (C) 2004-TODAY OpenERP S.A. <http://www.openerp.com>
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.0.1'
25 major_version = '6.0'
26 description = 'OpenERP Server'
27 long_desc = '''OpenERP is a complete ERP and CRM. The main features are accounting (analytic
28 and financial), stock management, sales and purchases management, tasks
29 automation, marketing campaigns, help desk, POS, etc. Technical features include
30 a distributed server, flexible workflows, an object database, a dynamic GUI,
31 customizable reports, and XML-RPC interfaces.
32 '''
33 classifiers = """Development Status :: 5 - Production/Stable
34 License :: OSI Approved :: GNU Affero General Public License v3
35 Programming Language :: Python
36 """
37 url = 'http://www.openerp.com'
38 author = 'OpenERP S.A.'
39 author_email = 'info@openerp.com'
40 support_email = 'support@openerp.com'
41 license = 'AGPL-3'
42
43 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
44