~therp-nl/anybox.recipe.openerp/jbaudoux-relative_paths_resolve_conflict

« back to all changes in this revision

Viewing changes to setup.py

[MRG] Update with target branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
import sys
3
3
from setuptools import setup, find_packages
4
4
 
5
 
version = '1.8-dev'
 
5
version = '1.8.2-dev'
6
6
 
7
7
if sys.version_info < (2, 6):
8
8
    sys.stderr.write("This package requires Python 2.6 or newer. "
13
13
 
14
14
if sys.version_info < (2, 7):
15
15
    requires.append('ordereddict')
 
16
    requires.append('argparse')
16
17
 
17
18
setup(
18
19
    name="anybox.recipe.openerp",
20
21
    author="Anybox",
21
22
    author_email="contact@anybox.fr",
22
23
    description="A buildout recipe to install and configure OpenERP",
23
 
    license="ZPL",
 
24
    license="AGPLv3+",
24
25
    long_description='\n'.join((
25
26
        open('README.rst').read(),
26
27
        open('CHANGES.rst').read())),
35
36
        'Framework :: Buildout :: Recipe',
36
37
        'Intended Audience :: Developers',
37
38
        'Intended Audience :: System Administrators',
38
 
        'License :: OSI Approved :: Zope Public License',
 
39
        'License :: OSI Approved :: GNU Affero General Public License v3 or '
 
40
        'later (AGPLv3+)',
39
41
        'Topic :: Software Development :: Build Tools',
40
42
        'Topic :: Software Development :: Libraries :: Python Modules',
41
43
    ],