- Timestamp:
- 05/19/06 17:10:44 (19 years ago)
- Location:
- pkipplib/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pkipplib/trunk/ipplib/version.py
r3 r12 21 21 # 22 22 23 __version__ = "0.0 1"23 __version__ = "0.02" 24 24 25 __doc__ = "ipplib : an implementation of IPP inPython."25 __doc__ = "ipplib : IPP and CUPS support for Python." 26 26 27 27 __author__ = "Jerome Alet - alet@librelogiciel.com" 28 28 29 __years__ = "2003, 2004, 2005 "29 __years__ = "2003, 2004, 2005, 2006" 30 30 31 31 __gplblurb__ = """This program is free software; you can redistribute it and/or modify -
pkipplib/trunk/setup.py
r10 r12 22 22 # 23 23 24 import os 25 import imp 24 26 from distutils.core import setup 25 27 26 from ipplib import version 28 version = imp.load_source("version", os.path.join("ipplib", "version.py")) 27 29 28 30 setup(name = "ipplib", version = version.__version__, … … 32 34 author_email = "alet@librelogiciel.com", 33 35 url = "http://www.librelogiciel.com/software/", 34 p y_modules = [ "ipplib" ])36 packages = [ "ipplib" ]) 35 37