source: products/qtheme.template/trunk/setup.py @ 285

Last change on this file since 285 was 242, checked in by mylan, 18 years ago

Clean code.
Add recent comment moderation configlet and service scripts.

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1from setuptools import setup, find_packages
2import sys, os
3
4version = '0.1'
5
6setup(name='qtheme.template',
7      version=version,
8      description="Quintagroup theme template for Plone 3 with nested namespace",
9      long_description="""\
10""",
11      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12      keywords='ZopeSkel theme template Quintagroup',
13      author='Quintagroup',
14      author_email='',
15      url='',
16      license='GPL',
17      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
18      include_package_data=True,
19      zip_safe=False,
20      install_requires=[
21          'ZopeSkel',
22          # -*- Extra requirements: -*-
23      ],
24      entry_points="""
25          [paste.paster_create_template]
26          qplone3_theme = qthemetemplate:qPlone3Theme
27
28          [zopeskel.zopeskel_sub_template]
29          skin_layer    = qthemetemplate.localcommands.subtemplates:SkinLayerSubTemplate
30          css_resource = qthemetemplate.localcommands.subtemplates:CSSSubTemplate
31          js_resource = qthemetemplate.localcommands.subtemplates:JSSubTemplate
32          viewlet_order = qthemetemplate.localcommands.subtemplates:ViewletOrderSubTemplate
33          viewlet_hidden = qthemetemplate.localcommands.subtemplates:ViewletHiddenSubTemplate
34
35          [distutils.setup_keywords]
36          theme_vars = qthemetemplate:assert_dict
37
38          [egg_info.writers]
39          theme_vars.txt = qthemetemplate:write_map
40
41      # -*- Entry points: -*-
42      """,
43      )
Note: See TracBrowser for help on using the repository browser.