cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl
author Laurent Peuch <cortex@worlddomination.be>
Thu, 05 Dec 2019 02:41:59 +0100
changeset 12799 e5752c14e5f0
parent 12567 26744ad37953
permissions -rw-r--r--
[changelog] talk about the new debug channels mechanism

# pylint: disable=W0622
"""%(distname)s application packaging information"""


modname = 'cubicweb_%(cubename)s'
distname = '%(distname)s'

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

license = '%(license)s'
author = '%(author)s'
author_email = '%(author-email)s'
description = '%(shortdesc)s'
web = 'http://www.cubicweb.org/project/%%s' %% distname

__depends__ = %(dependencies)s
__recommends__ = {}

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