Show
Ignore:
Timestamp:
03/05/10 23:48:56 (2 years ago)
Author:
hodgestar
Message:

Packaging slide.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hodgestar/Talks/PythonForProgrammers/slides/py4prog.py

    r730 r733  
    206206    ), 
    207207 
     208    # ... 3 slides go here ... 
     209 
     210    Slide("Debugging", PYCON(r''' 
     211        '''), 
     212    ), 
     213 
     214    Slide("Packaging", PYCODE(r''' 
     215        from setuptools import setup, find_packages 
     216 
     217        setup( 
     218            name = "textutils", 
     219            version = "0.1", 
     220            description = "A Python replacement for Unix text utilities", 
     221            author = "Simon Cross", 
     222            author_email = "hodgestar+ctpug@gmail.com", 
     223            packages = find_packages(), 
     224            scripts = [ 
     225                "text.py", 
     226            ], 
     227        ) 
     228        '''), 
     229    ), 
     230 
     231    Slide("Interacting with the Python Community", 
     232        Bullet("..."), 
     233    ), 
     234 
    208235) 
    209236