~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Hudson
  • Date: 2007-08-22 11:49:56 UTC
  • mto: (128.4.1 mwh.dev)
  • mto: This revision was merged to the branch mainline in revision 137.
  • Revision ID: michael.hudson@canonical.com-20070822114956-5j5srgc42waie95e
wow, get_revisions takes time more or less independent of the number of
revisions you pass.  take advantage of this in get_filelist -- takes viewing
the list of bzrlib in bzr.dev from about 50 seconds to 1 (when not using the
cache)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    
19
19
    install_requires = [
20
20
        "TurboGears >= 1.0b1",
21
 
        "bzr >= 0.13",
 
21
# for some reason, distutils can't find bzr.
 
22
#        "bzr >= 0.13",
22
23
    ],
23
 
    scripts = ["start-loggerhead.py"],
 
24
    scripts = ["start-loggerhead.py", "stop-loggerhead.py"],
24
25
    zip_safe=False,
25
26
    packages=find_packages(),
26
27
    package_data = find_package_data(where='loggerhead',
27
28
                                     package='loggerhead'),
28
 
    data_files = find_package_data(where='loggerhead', package='loggerhead'),
 
29
#    data_files = find_package_data(where='loggerhead', package='loggerhead'),
29
30
    keywords = [
30
31
        'turbogears.app',
31
32
    ],