/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Kent Gibson
  • Date: 2007-03-27 06:46:23 UTC
  • mfrom: (116 loggerhead)
  • mto: (128.3.1 robey.kg)
  • mto: This revision was merged to the branch mainline in revision 134.
  • Revision ID: warthog618@gmail.com-20070327064623-dmc6srm7hxajgfk2
merge loggerhead.dev

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