cubicweb/skeleton/cubicweb_CUBENAME/__pkginfo__.py.tmpl
author Denis Laxalde <denis.laxalde@logilab.fr>
Wed, 06 Jul 2016 17:46:39 +0200
changeset 11456 077f32a7a4c3
parent 11454 7770559e3945
child 11470 c0167228c12c
permissions -rw-r--r--
[devtools] Update skeleton's setup.py to install cube as a package Most of the prior logic of skeleton's setup.py gets dropped as installing a cube as a "classic package" (i.e. in site-packages) is just the default behavior of distutils. Also add a test checking installation of new cube. Related to #13001466.

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


modname = '%(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',
]