Skip to content
Snippets Groups Projects
__pkginfo__.py 736 B
Newer Older
David Douard's avatar
David Douard committed
# pylint: disable=W0622
"""cubicweb-s3storage application packaging information"""


modname = 'cubicweb_s3storage'
distname = 'cubicweb-s3storage'

numversion = (3, 1, 0)
David Douard's avatar
David Douard committed
version = '.'.join(str(num) for num in numversion)

license = 'LGPL'
author = 'LOGILAB S.A. (Paris, FRANCE)'
author_email = 'contact@logilab.fr'
description = 'A Cubicweb Storage that stores the data on S3'
web = 'https://forge.extranet.logilab.fr/cubicweb/cubes/%s' % distname
David Douard's avatar
David Douard committed

__depends__ = {
    'cubicweb': ">= 3.24.7, < 3.37.0",
    'six': '>= 1.4.0',
    'boto3': None,
}
David Douard's avatar
David Douard committed
__recommends__ = {}

classifiers = [
    'Environment :: Web Environment',
    'Framework :: CubicWeb',
    'Programming Language :: Python',
    'Programming Language :: JavaScript',
]