Changes between Version 10 and Version 11 of EggCookingTutorial/AdvancedEggCooking


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

Updated for latest setuptools

Legend:

Unmodified
Added
Removed
Modified
  • EggCookingTutorial/AdvancedEggCooking

    v10 v11  
    127127VERSION = '0.1'
    128128
    129 setup(name=PACKAGE, version=VERSION, packages=['helloworld'],
    130         package_data={'helloworld' : ['templates/*.cs',]})
     129setup(name=PACKAGE,
     130          version=VERSION,
     131          packages=['helloworld'],
     132          package_data={'helloworld' : ['templates/*.cs',]}
     133          entry_points={'trac.plugins': '%s = helloworld' % PACKAGE},
     134)
    131135}}}
    132136