~clearcorp-drivers/openobject-client/5.0-ccorp

« back to all changes in this revision

Viewing changes to bin/release.py

  • Committer: Stephane Wirtel
  • Date: 2010-11-05 01:49:30 UTC
  • Revision ID: stephane@openerp.com-20101105014930-i33rfb6h7frcm78r
Tags: 5.0.15
[RELEASE] OpenERP 5.0.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# -*- encoding: utf-8 -*-
3
 
##############################################################################
4
3
#
5
4
#    OpenERP, Open Source Management Solution   
6
5
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
7
 
#    $Id$
 
6
#    Copyright (C) 2004-TODAY OpenERP S.A. (<http://www.openerp.com>). All Rights Reserved
8
7
#
9
8
#    This program is free software: you can redistribute it and/or modify
10
9
#    it under the terms of the GNU General Public License as published by
19
18
#    You should have received a copy of the GNU General Public License
20
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
20
#
22
 
##############################################################################
23
21
 
24
22
name = 'openerp-client'
25
 
version = '5.0.14'
 
23
version = '5.0.15'
26
24
description = 'OpenERP Client'
27
 
long_desc = '''\
28
 
OpenERP is a complete ERP and CRM. The main features are accounting (analytic
 
25
long_desc = '''OpenERP is a complete ERP and CRM. The main features are accounting (analytic
29
26
and financial), stock management, sales and purchases management, tasks
30
27
automation, marketing campaigns, help desk, POS, etc. Technical features include
31
28
a distributed server, flexible workflows, an object database, a dynamic GUI,
32
29
customizable reports, and SOAP and XML-RPC interfaces.
33
30
'''
34
 
classifiers = """\
35
 
Development Status :: 5 - Production/Stable
 
31
classifiers = """Development Status :: 5 - Production/Stable
36
32
License :: OSI Approved :: GNU General Public License (GPL)
37
33
Programming Language :: Python
38
34
"""
39
35
url = 'http://www.openerp.com'
40
 
author = 'Tiny.be'
41
 
author_email = 'info@tiny.be'
 
36
author = 'OpenERP S.A.'
 
37
author_email = 'info@openerp.com'
 
38
support_email = 'support@openerp.com'
42
39
license = 'GPL-3'
 
40
download_url='http://www.openerp.com/download/stable/source/openerp-client-5.0.15.tar.gz'
43
41
 
44
42
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
45
43