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

Simon Chabot's avatar
Simon Chabot committed
modname = "elasticsearch"
distname = "cubicweb-elasticsearch"
Katia Saurfelt's avatar
Katia Saurfelt committed
numversion = (0, 11, 3)
Simon Chabot's avatar
Simon Chabot committed
version = ".".join(str(num) for num in numversion)

license = "LGPL"
author = "LOGILAB S.A. (Paris, FRANCE)"
author_email = "contact@logilab.fr"
description = "Simple ElasticSearch indexing integration for CubicWeb"
web = "https://forge.extranet.logilab.fr/cubicweb/cubes/%s" % distname
Simon Chabot's avatar
Simon Chabot committed
__depends__ = {
    "cubicweb": ">= 3.28.0, < 3.37.0",
Simon Chabot's avatar
Simon Chabot committed
    "cwtags": None,
    "elasticsearch": ">=7.0.0,<8.0.0",
    "elasticsearch-dsl": ">=7.0.0,<8.0.0",
    "beautifulsoup4": None,
}
Samuel Trégouët's avatar
Samuel Trégouët committed

Simon Chabot's avatar
Simon Chabot committed
    "Environment :: Web Environment",
    "Framework :: CubicWeb",
    "Programming Language :: Python",
    "Programming Language :: JavaScript",
Adrien Di Mascio's avatar
Adrien Di Mascio committed
]