~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robey Pointer
  • Date: 2007-09-04 17:21:59 UTC
  • mto: (140.2.1 merge-robey)
  • mto: This revision was merged to the branch mainline in revision 142.
  • Revision ID: robey@lag.net-20070904172159-gc99cmnudnhjf2z2
the list of files per revision on the changelog page is too cluttered.
removed the "-> diff" link and made the filename's link be the link to
the diff (with a popup description), since looking at the diff is the
common case.  you can still reach the file's annotation from the diff
page.

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
    ],