Switch to unified view

a/Allura/setup.py b/Allura/setup.py
...
...
37
        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
37
        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
38
        'License :: OSI Approved :: Apache Software License',
38
        'License :: OSI Approved :: Apache Software License',
39
        ],
39
        ],
40
    install_requires=[
40
    install_requires=[
41
        "TurboGears2",
41
        "TurboGears2",
42
        "tg.devtools",
43
        "pypeline",
42
        "pypeline",
44
        "datadiff",
43
        "datadiff",
45
        "BeautifulSoup",
44
        "BeautifulSoup",
46
        "PasteScript",
45
        "PasteScript",
47
        "Babel >= 0.9.4",
46
        "Babel >= 0.9.4",
48
        "jinja2",
47
        "jinja2",
49
        "pysolr",
48
        "pysolr",
50
        "repoze.what-quickstart",
51
        "sqlalchemy-migrate",
52
        "Markdown >= 2.0.3",
49
        "Markdown >= 2.0.3",
53
        "Pygments >= 1.1.1",
50
        "Pygments >= 1.1.1",
54
        "PyYAML >= 3.09",
55
        "python-openid >= 2.2.4",
51
        "python-openid >= 2.2.4",
56
        "python-dateutil >= 1.4.1",
57
        "WebOb >= 0.9.8",
58
        "WebTest >= 1.2",
59
        "EasyWidgets >= 0.1.1",
52
        "EasyWidgets >= 0.1.1",
60
        "PIL >= 1.1.7",
53
        "PIL >= 1.1.7",
61
        "iso8601",
54
        "iso8601",
62
        "chardet >= 1.0.1",
55
        "chardet >= 1.0.1",
63
        "feedparser >= 5.0.1",
56
        "feedparser >= 5.0.1",
64
        "oauth2 >= 1.2.0",
57
        "oauth2 >= 1.2.0",
65
        "Ming >= 0.2.2dev-20110930",
58
        "Ming >= 0.2.2dev-20110930",
66
        ],
59
        ],
67
    setup_requires=["PasteScript >= 1.7"],
60
    setup_requires=["PasteScript >= 1.7"],
68
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools', 'Ming'],
61
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'Ming'],
69
    packages=find_packages(exclude=['ez_setup']),
62
    packages=find_packages(exclude=['ez_setup']),
70
    include_package_data=True,
63
    include_package_data=True,
71
    test_suite='nose.collector',
64
    test_suite='nose.collector',
72
    tests_require=['WebTest >= 1.2', 'BeautifulSoup', 'pytidylib', 'poster', 'nose'],
65
    tests_require=['WebTest >= 1.2', 'BeautifulSoup', 'pytidylib', 'poster', 'nose'],
73
    package_data={'allura': ['i18n/*/LC_MESSAGES/*.mo',
66
    package_data={'allura': ['i18n/*/LC_MESSAGES/*.mo',
...
...
117
    script = allura.command:ScriptCommand
110
    script = allura.command:ScriptCommand
118
    set-tool-access = allura.command:SetToolAccessCommand
111
    set-tool-access = allura.command:SetToolAccessCommand
119
    smtp_server=allura.command:SMTPServerCommand
112
    smtp_server=allura.command:SMTPServerCommand
120
    create-neighborhood = allura.command:CreateNeighborhoodCommand
113
    create-neighborhood = allura.command:CreateNeighborhoodCommand
121
    create-trove-categories = allura.command:CreateTroveCategoriesCommand
114
    create-trove-categories = allura.command:CreateTroveCategoriesCommand
122
    
115
123
    [easy_widgets.resources]
116
    [easy_widgets.resources]
124
    ew_resources=allura.config.resources:register_ew_resources
117
    ew_resources=allura.config.resources:register_ew_resources
125
118
126
    [easy_widgets.engines]
119
    [easy_widgets.engines]
127
    jinja = allura.config.app_cfg:JinjaEngine
120
    jinja = allura.config.app_cfg:JinjaEngine
128
121
129
    """,
122
    """,
130
)
123
)
131