Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / setup.py @ 02503aef

History | View | Annotate | Download (1.53 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='vigiboard',
11
    version='0.1',
12
    description="""
13
    IHM Module for the Dashboard
14
    """,
15
    author="""Thomas ANDREJAK""",
16
    author_email="""thomas.andrejak@gmail.com""",
17
    install_requires=[
18
        "TurboGears2 >= 2.0b7",
19
        "Catwalk >= 2.0.2",
20
        "Babel >=0.9.4",
21
        "ToscaWidgets >= 0.9.7.1",
22
        "zope.sqlalchemy >= 0.4 ",
23
        "repoze.tm2 >= 1.0a4",
24
        "repoze.what-quickstart >= 1.0",
25
        "psycopg2",
26
        "tw.jquery >= 0.9.5",
27
        "vigiboard",
28
        ],
29
    setup_requires=["PasteScript >= 1.7"],
30
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
31
    packages=find_packages(exclude=['ez_setup']),
32
    include_package_data=True,
33
    test_suite='nose.collector',
34
    tests_require=['WebTest', 'BeautifulSoup'],
35
    package_data={'vigiboard': ['i18n/*/LC_MESSAGES/*.mo',
36
                                 'templates/*/*',
37
                                 'public/*/*']},
38
    message_extractors={'vigiboard': [
39
            ('**.py', 'python', None),
40
            ('templates/**.mako', 'mako', None),
41
            ('templates/**.html', 'genshi', None),
42
            ('public/**', 'ignore', None)]},
43

    
44
    entry_points="""
45
    [paste.app_factory]
46
    main = vigiboard.config.middleware:make_app
47

48
    [paste.app_install]
49
    main = pylons.util:PylonsInstaller
50
    """,
51
)