~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Hudson
  • Date: 2008-06-16 10:03:24 UTC
  • mfrom: (159.1.7 remove_caches)
  • Revision ID: michael.hudson@canonical.com-20080616100324-dyzbdp3xk2i1g34a
merge martin's remove caches branch, which removes the sql revision cache and
the textindexing code.
we still have the files changed cache.
(some further changes by me)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
import os
5
5
execfile(os.path.join("loggerhead", "release.py"))
6
6
 
 
7
 
7
8
setup(
8
9
    name="loggerhead",
9
10
    version=version,
10
11
    
11
 
    # uncomment the following lines if you fill them out in release.py
12
 
    #description=description,
13
 
    #author=author,
14
 
    #author_email=email,
15
 
    #url=url,
16
 
    #download_url=download_url,
17
 
    #license=license,
 
12
    description=description,
 
13
    author=author,
 
14
    author_email=email,
 
15
    url=url,
 
16
    download_url=download_url,
 
17
    license=license,
 
18
    maintainer="Michael Hudson",
 
19
    maintainer_email="michael.hudson@canonical.com",
18
20
    
19
21
    install_requires = [
20
22
        "TurboGears >= 1.0b1",
 
23
# for some reason, distutils can't find bzr.
 
24
#        "bzr >= 0.13",
21
25
    ],
22
 
    scripts = ["start-loggerhead.py"],
 
26
    scripts = ["start-loggerhead.py", "stop-loggerhead.py"],
23
27
    zip_safe=False,
24
28
    packages=find_packages(),
25
29
    package_data = find_package_data(where='loggerhead',
26
30
                                     package='loggerhead'),
 
31
#    data_files = find_package_data(where='loggerhead', package='loggerhead'),
27
32
    keywords = [
28
 
        # Use keywords if you'll be adding your package to the
29
 
        # Python Cheeseshop
30
 
        
31
 
        # if this has widgets, uncomment the next line
32
 
        # 'turbogears.widgets',
33
 
        
34
 
        # if this has a tg-admin command, uncomment the next line
35
 
        # 'turbogears.command',
36
 
        
37
 
        # if this has identity providers, uncomment the next line
38
 
        # 'turbogears.identity.provider',
39
 
    
40
 
        # If this is a template plugin, uncomment the next line
41
 
        # 'python.templating.engines',
42
 
        
43
 
        # If this is a full application, uncomment the next line
44
 
        # 'turbogears.app',
 
33
        'turbogears.app',
45
34
    ],
46
35
    classifiers = [
47
36
        'Development Status :: 3 - Alpha',
48
37
        'Operating System :: OS Independent',
49
38
        'Programming Language :: Python',
50
 
        'Topic :: Software Development :: Libraries :: Python Modules',
51
39
        'Framework :: TurboGears',
52
 
        # if this is an application that you'll distribute through
53
 
        # the Cheeseshop, uncomment the next line
54
 
        # 'Framework :: TurboGears :: Applications',
55
 
        
56
 
        # if this is a package that includes widgets that you'll distribute
57
 
        # through the Cheeseshop, uncomment the next line
58
 
        # 'Framework :: TurboGears :: Widgets',
 
40
        'Framework :: TurboGears :: Applications',
59
41
    ],
60
42
    test_suite = 'nose.collector',
61
43
    )