Changeset 13 for pkipplib/trunk/setup.py

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.

Files:
1 modified

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