cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl
author Simon Chabot <simon.chabot@logilab.fr>
Fri, 14 Feb 2020 18:15:55 +0100
changeset 12891 eb0cd6060062
parent 12567 26744ad37953
permissions -rw-r--r--
[rdf] add functions and tools to generate rdf graph

# 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',
]