Changes between Version 2 and Version 3 of EggCookingTutorial/BasicEggCooking


Ignore:
Timestamp:
Aug 27, 2005, 5:49:03 PM (19 years ago)
Author:
Christian Boos
Comment:

added syntax highlighting (and not tagging as tutorial... I saw the intent of having only the toplevel page tagged as tutorial...)

Legend:

Unmodified
Added
Removed
Modified
  • EggCookingTutorial/BasicEggCooking

    v2 v3  
    3030So create ''helloworld.py'' in ''./helloworld-plugin/helloworld/'':
    3131{{{
     32#!python
    3233# Helloworld plugin
    3334
     
    6465Since this is not enough, we need to make our simple plugin as a module. To do so, you simply create that magic ''!__init!__.py'' into ''./helloworld-plugin/helloworld/'':
    6566{{{
     67#!python
    6668# Helloworld module
    6769from helloworld import *
     
    7274Now it's time to make it as an egg. For that we need a chicken called ''setup.py'' that is created into ''./helloworld-plugin/'':
    7375{{{
     76#!python
    7477from setuptools import setup
    7578