Changeset 122

Show
Ignore:
Timestamp:
08/02/06 09:10:30 (2 years ago)
Author:
mk
Message:

Replaced 'scripts' setuptools directive with 'entry_points'.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/mk/setup.py

    r55 r122  
    2727        scripts = ['cheesecake_index', 
    2828                    ], 
     29        entry_points = { 
     30            'console_scripts': [ 
     31                'cheesecake_index = cheesecake.cheesecake_index:main', 
     32            ] 
     33        }, 
    2934        test_suite = 'nose.collector', 
    30      
     35