~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robey Pointer
  • Date: 2006-12-18 20:52:28 UTC
  • Revision ID: robey@lag.net-20061218205228-lucdunv478b0wls2
another pile of semi-related changes:
* added a download link to the annotate page
* fixed all pages to track paths by file_id, not (changable) path
* some small optimizations
* don't bother to display annotation for a binary file

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
 
 
8
7
setup(
9
8
    name="loggerhead",
10
9
    version=version,
11
10
    
12
 
    description=description,
13
 
    author=author,
14
 
    author_email=email,
15
 
    url=url,
16
 
    download_url=download_url,
17
 
    license=license,
 
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,
18
18
    
19
19
    install_requires = [
20
20
        "TurboGears >= 1.0b1",
21
 
        "bzr >= 0.13",
22
21
    ],
23
22
    scripts = ["start-loggerhead.py"],
24
23
    zip_safe=False,
25
24
    packages=find_packages(),
26
25
    package_data = find_package_data(where='loggerhead',
27
26
                                     package='loggerhead'),
28
 
    data_files = find_package_data(where='loggerhead', package='loggerhead'),
29
27
    keywords = [
30
 
        'turbogears.app',
 
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',
31
45
    ],
32
46
    classifiers = [
33
47
        'Development Status :: 3 - Alpha',
34
48
        'Operating System :: OS Independent',
35
49
        'Programming Language :: Python',
 
50
        'Topic :: Software Development :: Libraries :: Python Modules',
36
51
        'Framework :: TurboGears',
37
 
        'Framework :: TurboGears :: Applications',
 
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',
38
59
    ],
39
60
    test_suite = 'nose.collector',
40
61
    )