~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robey Pointer
  • Date: 2007-01-14 05:40:40 UTC
  • Revision ID: robey@lag.net-20070114054040-7i9lbhq992e612rq
fix up dev.cfg so that nobody will ever have to edit it, by letting the
important params be overridable in loggerhead.conf.

make start-loggerhead actually daemonize, write a pid file, and write logs
to normal log files, instead of requiring 'nohup' stuff.  ie act like a real
server.  added stop-loggerhead to do a clean shutdown.  changed the README
to clarify how it should work now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    url=url,
16
16
    download_url=download_url,
17
17
    license=license,
18
 
    maintainer="Michael Hudson",
19
 
    maintainer_email="michael.hudson@canonical.com",
20
18
    
21
19
    install_requires = [
22
20
        "TurboGears >= 1.0b1",
23
 
# for some reason, distutils can't find bzr.
24
 
#        "bzr >= 0.13",
 
21
        "bzr >= 0.13",
25
22
    ],
26
 
    scripts = ["start-loggerhead.py", "stop-loggerhead.py"],
 
23
    scripts = ["start-loggerhead.py"],
27
24
    zip_safe=False,
28
25
    packages=find_packages(),
29
26
    package_data = find_package_data(where='loggerhead',
30
27
                                     package='loggerhead'),
31
 
#    data_files = find_package_data(where='loggerhead', package='loggerhead'),
 
28
    data_files = find_package_data(where='loggerhead', package='loggerhead'),
32
29
    keywords = [
33
30
        'turbogears.app',
34
31
    ],