cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl
author Denis Laxalde <denis.laxalde@logilab.fr>
Tue, 21 Feb 2017 17:42:46 +0100
changeset 11969 2fb941d12d74
parent 11470 c0167228c12c
child 12567 26744ad37953
permissions -rw-r--r--
[pyramid] Move loading of pyramid_debugtoolbar later in includeme() To gather cwconfig and repository instantiations.

# 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',
    'Programming Language :: JavaScript',
]