~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robey Pointer
  • Date: 2006-12-29 21:51:12 UTC
  • Revision ID: robey@lag.net-20061229215112-d164jqo8djs3lims
add the script i use to update the website, so i don't lose it

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