Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / setup.py @ 805cc54a

History | View | Annotate | Download (1.37 KB)

1
# -*- coding: utf-8 -*-
2
try:
3
    from setuptools import setup, find_packages
4
except ImportError:
5
    from ez_setup import use_setuptools
6
    use_setuptools()
7
    from setuptools import setup, find_packages
8

    
9
setup(
10
    name='dashboard',
11
    version='0.1',
12
    description='',
13
    author='',
14
    author_email='',
15
    #url='',
16
    install_requires=[
17
        "TurboGears2 >= 2.0b7",
18
        "Catwalk >= 2.0.2",
19
        "Babel >=0.9.4",
20
        "zope.sqlalchemy >= 0.4 ",
21
        "repoze.tm2 >= 1.0a4",
22
        
23
        "repoze.what-quickstart >= 1.0",
24
                ],
25
    setup_requires=["PasteScript >= 1.7"],
26
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
27
    packages=find_packages(exclude=['ez_setup']),
28
    include_package_data=True,
29
    test_suite='nose.collector',
30
    tests_require=['WebTest', 'BeautifulSoup'],
31
    package_data={'dashboard': ['i18n/*/LC_MESSAGES/*.mo',
32
                                 'templates/*/*',
33
                                 'public/*/*']},
34
    message_extractors={'dashboard': [
35
            ('**.py', 'python', None),
36
            ('templates/**.mako', 'mako', None),
37
            ('templates/**.html', 'genshi', None),
38
            ('public/**', 'ignore', None)]},
39

    
40
    entry_points="""
41
    [paste.app_factory]
42
    main = dashboard.config.middleware:make_app
43

44
    [paste.app_install]
45
    main = pylons.util:PylonsInstaller
46
    """,
47
)