Changeset 4529

Show
Ignore:
Timestamp:
04/28/08 15:18:58 (3 months ago)
Author:
carndt
Message:

Pre-release touch ups for Lightbox

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/tgLightbox/trunk/lightbox/release.py

    r4527 r4529  
    1717 
    1818description = "Lightbox photo display widget" 
     19long_description = __doc__ 
    1920author = "Lokesh Dhakar, Kevin Dangoor, Christopher Arndt" 
    2021email = "dangoor+lightbox@gmail.com" 
  • projects/tgLightbox/trunk/setup.py

    r4527 r4529  
    66 
    77setup( 
    8     name="Lightbox", 
    9     version=version, 
     8    name = "Lightbox", 
     9    version = version, 
    1010 
    11     description=description, 
    12     author=author, 
    13     author_email=email, 
     11    description = description, 
     12    long_description = long_description, 
     13    author = author, 
     14    author_email = email, 
    1415    url = url, 
    15     download_url=download_url, 
    16     license=license, 
     16    download_url = download_url, 
     17    license = license, 
    1718 
    1819    install_requires = [ 
     
    2021        "Scriptaculous >= 1.8.1" 
    2122    ], 
    22     zip_safe=False, 
    23     packages=find_packages(), 
     23    zip_safe = False, 
     24    packages = find_packages(), 
    2425    package_data = find_package_data(where='lightbox', 
    2526                                     package='lightbox'),