Skip to content
Snippets Groups Projects
__pkginfo__.py 689 B
Newer Older
"""cubicweb-rodolf application packaging information"""


modname = "cubicweb_rodolf"
distname = "cubicweb-rodolf"

numversion = (0, 1, 0)
version = ".".join(str(num) for num in numversion)

license = "LGPL"
author = "LOGILAB S.A. (Paris, FRANCE)"
author_email = "contact@logilab.fr"
description = "RDF data production monitoring (RODOLF)"
web = "https://forge.extranet.logilab.fr/cubicweb/cubes/rodolf"

__depends__ = {
    "cubicweb[postgresql]": ">= 4.5.2,< 5.0.0",
    "cubicweb-file": None,
}
__recommends__ = {}

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