~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Hudson
  • Date: 2007-07-04 12:14:56 UTC
  • mfrom: (128.1.41 testing)
  • Revision ID: michael.hudson@canonical.com-20070704121456-5e5fz9ov5ofmdj6t
two brown paper bag fixes FROM THE RIGHT PLACE

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