Changes between Version 13 and Version 14 of EggCookingTutorial/AdvancedEggCooking2


Ignore:
Timestamp:
Mar 20, 2006, 1:34:08 AM (18 years ago)
Author:
Alec Thomas
Comment:

Updated for latest setuptools

Legend:

Unmodified
Added
Removed
Modified
  • EggCookingTutorial/AdvancedEggCooking2

    v13 v14  
    5050VERSION = '0.1'
    5151
    52 setup(name=PACKAGE, version=VERSION, packages=['helloworld'],
    53       package_data={'helloworld' : ['htdocs/css/*.css', 'htdocs/images/*.jpg',
    54                                     'templates/*.cs' ]})
     52setup(name=PACKAGE,
     53          version=VERSION,
     54          packages=['helloworld'],
     55          package_data={'helloworld' : ['htdocs/css/*.css', 'htdocs/images/*.jpg',
     56                                        'templates/*.cs' ]}
     57          entry_points={'trac.plugins': '%s = helloworld' % PACKAGE},
     58)
    5559}}}
    5660