~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robey Pointer
  • Date: 2006-12-13 01:45:10 UTC
  • Revision ID: robey@lag.net-20061213014510-caliusjw2auhzjpz
clean up revision navigation so that the "revlist" you're browsing is
remembered after you click through the "(changes)" list for a file.  also
clean up the navbar so that it fetches its info from a sub-container, and
let most pages fill that container from a standard method in history.
trimmed the ranges shown in the navbar (no more -1, -3).  and finally,
browsing into a folder should now work in inventory view.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# This program is free software; you can redistribute it and/or modify
3
 
# it under the terms of the GNU General Public License as published by
4
 
# the Free Software Foundation; either version 2 of the License, or
5
 
# (at your option) any later version.
6
 
#
7
 
# This program is distributed in the hope that it will be useful,
8
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
# GNU General Public License for more details.
11
 
#
12
 
# You should have received a copy of the GNU General Public License
13
 
# along with this program; if not, write to the Free Software
14
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
 
 
16
1
from setuptools import setup, find_packages
17
2
from turbogears.finddata import find_package_data
18
3
 
19
4
import os
20
5
execfile(os.path.join("loggerhead", "release.py"))
21
6
 
22
 
 
23
7
setup(
24
8
    name="loggerhead",
25
9
    version=version,
26
10
    
27
 
    description=description,
28
 
    author=author,
29
 
    author_email=email,
30
 
    url=url,
31
 
    download_url=download_url,
32
 
    license=license,
33
 
    maintainer="Michael Hudson",
34
 
    maintainer_email="michael.hudson@canonical.com",
 
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,
35
18
    
36
19
    install_requires = [
37
20
        "TurboGears >= 1.0b1",
38
 
# for some reason, distutils can't find bzr.
39
 
#        "bzr >= 0.13",
40
21
    ],
41
 
    scripts = ["start-loggerhead", "stop-loggerhead", "serve-branches"],
 
22
    scripts = ["start-loggerhead.py"],
42
23
    zip_safe=False,
43
24
    packages=find_packages(),
44
25
    package_data = find_package_data(where='loggerhead',
45
26
                                     package='loggerhead'),
46
 
#    data_files = find_package_data(where='loggerhead', package='loggerhead'),
47
 
    data_files=[('share/man/man1', 
48
 
                    ['start-loggerhead.1', 'stop-loggerhead.1'])],
49
27
    keywords = [
50
 
        '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',
51
45
    ],
52
46
    classifiers = [
53
47
        'Development Status :: 3 - Alpha',
54
48
        'Operating System :: OS Independent',
55
49
        'Programming Language :: Python',
 
50
        'Topic :: Software Development :: Libraries :: Python Modules',
56
51
        'Framework :: TurboGears',
57
 
        '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',
58
59
    ],
59
60
    test_suite = 'nose.collector',
60
61
    )