Changeset 67 for trunk/setup.py

Show
Ignore:
Timestamp:
11/07/07 09:23:09 (1 year ago)
Author:
alberto
Message:

Applied reindent.py an all .py files to switch from tabs to 4 spaces. Closes #66

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/setup.py

    r16 r67  
    1313 
    1414setup( 
    15                 name="TurboMail", 
    16                 version=version, 
    17          
    18                 description=description, 
    19                 long_description=long_description, 
    20                 author=author, 
    21                 author_email=email, 
    22                 url=url, 
    23                 download_url=download_url, 
    24                 license=license, 
    25          
    26                 install_requires = ["TurboGears >= 0.9a9dev-r2003"], 
    27                 zip_safe=True, 
    28                 packages=find_packages(), 
    29                 package_data = find_package_data(where='turbomail', package='turbomail'), 
    30                 keywords = ["turbogears.extension"], 
    31                 classifiers = [ 
    32                         'Development Status :: 5 - Production/Stable', 
    33                         'Framework :: TurboGears', 
    34                         'Intended Audience :: Developers', 
    35                         'License :: OSI Approved :: MIT License', 
    36                         'Operating System :: OS Independent', 
    37                         'Programming Language :: Python', 
    38                         'Topic :: Communications :: Email', 
    39                         'Topic :: Software Development :: Libraries :: Python Modules', 
    40                 ], 
    41                 test_suite = 'nose.collector', 
    42                 entry_points = { 
    43 #                               'paste.paster_create_template': ["turbomail = turbomail.startup:MailTemplate"] 
    44                                 'turbogears.extensions': ["turbomail = turbomail"] 
    45                         } 
    46         ) 
    47          
     15                name="TurboMail", 
     16                version=version, 
     17 
     18                description=description, 
     19                long_description=long_description, 
     20                author=author, 
     21                author_email=email, 
     22                url=url, 
     23                download_url=download_url, 
     24                license=license, 
     25 
     26                install_requires = ["TurboGears >= 0.9a9dev-r2003"], 
     27                zip_safe=True, 
     28                packages=find_packages(), 
     29                package_data = find_package_data(where='turbomail', package='turbomail'), 
     30                keywords = ["turbogears.extension"], 
     31                classifiers = [ 
     32                        'Development Status :: 5 - Production/Stable', 
     33                        'Framework :: TurboGears', 
     34                        'Intended Audience :: Developers', 
     35                        'License :: OSI Approved :: MIT License', 
     36                        'Operating System :: OS Independent', 
     37                        'Programming Language :: Python', 
     38                        'Topic :: Communications :: Email', 
     39                        'Topic :: Software Development :: Libraries :: Python Modules', 
     40                ], 
     41                test_suite = 'nose.collector', 
     42                entry_points = { 
     43#                               'paste.paster_create_template': ["turbomail = turbomail.startup:MailTemplate"] 
     44                                'turbogears.extensions': ["turbomail = turbomail"] 
     45                        } 
     46        )