Changeset 13 for pkipplib

Show
Ignore:
Timestamp:
05/22/06 18:28:11 (18 years ago)
Author:
jerome
Message:

Renamed directory to pkipplib to avoid confusion with the
other Python IPP module.

Location:
pkipplib/trunk
Files:
2 modified
1 moved

Legend:

Unmodified
Added
Removed
  • pkipplib/trunk/setup.py

    r12 r13  
    22# -*- coding: ISO-8859-15 -*- 
    33# 
    4 # ipplib : IPP and CUPS support for Python 
     4# pkipplib : IPP and CUPS support for Python 
    55# 
    66# (c) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com> 
     
    2626from distutils.core import setup 
    2727 
    28 version = imp.load_source("version", os.path.join("ipplib", "version.py")) 
     28version = imp.load_source("version", os.path.join("pkipplib", "version.py")) 
    2929 
    30 setup(name = "ipplib", version = version.__version__, 
     30setup(name = "pkipplib", version = version.__version__, 
    3131      license = "GNU GPL", 
    3232      description = version.__doc__, 
     
    3434      author_email = "alet@librelogiciel.com", 
    3535      url = "http://www.librelogiciel.com/software/", 
    36       packages = [ "ipplib" ]) 
     36      packages = [ "pkipplib" ]) 
    3737 
  • pkipplib/trunk/tests/test.py

    r9 r13  
    22# -*- coding: ISO-8859-15 -*- 
    33# 
    4 # ipplib : IPP and CUPS support for Python 
     4# pkipplib : IPP and CUPS support for Python 
    55# 
    66# (c) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com> 
     
    2323import sys 
    2424 
    25 sys.path.insert(0, "../ipplib") 
    26 import ipplib         
     25sys.path.insert(0, "../pkipplib") 
     26import pkipplib         
    2727     
    28 cups = ipplib.CUPS()     
     28cups = pkipplib.CUPS()     
    2929answer = cups.getPPD("HL6050DN") 
    3030#answer = cups.getJobAttributes(566)