| | 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 | |