Skip to content
Snippets Groups Projects
__pkginfo__.py 780 B
Newer Older
# pylint: disable=W0622
"""cubicweb-squareui application packaging information"""

Laurent Peuch's avatar
Laurent Peuch committed
modname = "squareui"
distname = "cubicweb-squareui"
numversion = (1, 6, 0)
Laurent Peuch's avatar
Laurent Peuch committed
version = ".".join(str(num) for num in numversion)
Laurent Peuch's avatar
Laurent Peuch committed
license = "LGPL"
author = "LOGILAB S.A. (Paris, FRANCE)"
author_email = "contact@logilab.fr"
description = "data-centric user interface for cubicweb based on bootstrap"
web = f"https://forge.extranet.logilab.fr/cubicweb/cubes/{distname}"
__depends__ = {
    "cubicweb": ">= 4.0.0, < 5.0.0",
    "cubicweb-web": ">= 1.0.0, < 2.0.0",
    "cubicweb-bootstrap": ">= 2.0.0, < 3.0.0",
}

__recommends__ = {}

classifiers = [
Laurent Peuch's avatar
Laurent Peuch committed
    "Environment :: Web Environment",
    "Framework :: CubicWeb",
    "Programming Language :: Python",
    "Programming Language :: JavaScript",