diff options
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/index.docbook | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/en/index.docbook b/doc/en/index.docbook index fe2d728..db50244 100644 --- a/doc/en/index.docbook +++ b/doc/en/index.docbook @@ -125,20 +125,20 @@ below. Distutils is based around writing a <filename>setup.py</filename> file which then uses the distutils package To use the KDE extensions, the first thing you need to do in your <filename>setup.py -</filename> file is include the <symbol>kdedistutils</symbol> package. +</filename> file is include the <symbol>tdedistutils</symbol> package. <programlisting> #!/usr/bin/env python # Setup.py file for MyKDEApplication -import kdedistutils +import tdedistutils </programlisting> -You need to call the <symbol>setup()</symbol> function from <symbol>kdedistutils</symbol> +You need to call the <symbol>setup()</symbol> function from <symbol>tdedistutils</symbol> with all of the configuration information about your application, much like the standard <symbol>setup()</symbol> from <symbol>distutils</symbol>. <programlisting> -kdedistutils.setup(name="pytdeextensions", +tdedistutils.setup(name="pytdeextensions", version="0.1.0", author="Simon Edwards", author_email="simon@simonzone.com", |