Changeset 1126 in products


Ignore:
Timestamp:
Jul 22, 2009 9:58:59 AM (15 years ago)
Author:
chervol
Message:

added paster template registration and initial controller

Location:
QGSkel/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • QGSkel/trunk/qgskel/__init__.py

    r1125 r1126  
    11# 
     2from zopeskel.qgplone3_buildout import QGPlone3Buildout 
  • QGSkel/trunk/setup.py

    r1125 r1126  
    77      version=version, 
    88      description="Zope skels by quintagroup", 
    9       long_description="""\ 
    10 """, 
    11       classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 
     9      long_description=open('README.txt').read() + "\n" + 
     10                         open('HISTORY.txt').read(), 
     11      classifiers=[ 
     12         "Development Status :: 5 - Production/Stable", 
     13         "Framework :: Zope2", 
     14         "Framework :: Zope3", 
     15         "Intended Audience :: Developers", 
     16         "License :: OSI Approved :: MIT License", 
     17         "Programming Language :: Python", 
     18         "Topic :: Internet :: WWW/HTTP", 
     19         "Topic :: Internet :: WWW/HTTP :: Dynamic Content", 
     20         ], 
    1221      keywords='', 
    1322      author='Volodymyr Cherepanyak', 
    14       author_email='<support at quintagroup.com>', 
     23      author_email='support at quintagroup.com', 
    1524      url='http://quintagroup.com', 
    16       license='GPL', 
     25      license='', 
    1726      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 
    1827      include_package_data=True, 
     
    2231      ], 
    2332      entry_points=""" 
    24       # -*- Entry points: -*- 
     33      [paste.paster_create_template] 
     34      qgplone3_buildout = qgskel:QGPlone3Buildout 
    2535      """, 
    2636      ) 
Note: See TracChangeset for help on using the changeset viewer.