diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2014-01-18 16:57:50 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-01-18 16:59:29 +0100 |
commit | 5559f44ec69d0117494b80a0eaa235bd7baa2561 (patch) | |
tree | cd0fe69ade3709ae18619959ca6815f17a95166b /doc/en | |
parent | edae246dc73fd1a4d239d330cda804f7c8dc32bc (diff) | |
download | pytdeextensions-5559f44ec69d0117494b80a0eaa235bd7baa2561.tar.gz pytdeextensions-5559f44ec69d0117494b80a0eaa235bd7baa2561.zip |
Rename kdedistutils => tdedistutils
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", |