~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-09-07 18:46:20 UTC
  • mfrom: (128.4.15 no-more-bdb)
  • Revision ID: pqm@pqm.ubuntu.com-20070907184620-nu3n5io002ryctkx
[r=barry] stop using the bdb-backed shelve database for caching

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