Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / setup.py @ 6f56e540

History | View | Annotate | Download (1.79 KB)

1 49c8da1d Thomas ANDREJAK
# -*- coding: utf-8 -*-
2 d41c3589 Gabriel DE PERTHUIS
# vim:set expandtab tabstop=4 shiftwidth=4:
3 49c8da1d Thomas ANDREJAK
try:
4
    from setuptools import setup, find_packages
5
except ImportError:
6
    from ez_setup import use_setuptools
7
    use_setuptools()
8
    from setuptools import setup, find_packages
9
10 d4656036 Gabriel DE PERTHUIS
tests_require = ['WebTest', 'BeautifulSoup']
11
12 49c8da1d Thomas ANDREJAK
setup(
13
    name='vigiboard',
14
    version='0.1',
15 b4aa7dff Thomas ANDREJAK
    description="""
16
    IHM Module for the Dashboard
17
    """,
18
    author="""Thomas ANDREJAK""",
19
    author_email="""thomas.andrejak@gmail.com""",
20 49c8da1d Thomas ANDREJAK
    install_requires=[
21 47a5602c Aurelien BOMPARD
        "tg.devtools",
22 49c8da1d Thomas ANDREJAK
        "TurboGears2 >= 2.0b7",
23
        "Catwalk >= 2.0.2",
24
        "Babel >=0.9.4",
25 d5e2cf0e Thomas ANDREJAK
        "ToscaWidgets >= 0.9.7.1",
26 49c8da1d Thomas ANDREJAK
        "zope.sqlalchemy >= 0.4 ",
27
        "repoze.tm2 >= 1.0a4",
28
        "repoze.what-quickstart >= 1.0",
29 34daaff8 Gabriel DE PERTHUIS
        "psycopg2",
30 d8b93920 Gabriel DE PERTHUIS
        "tw.jquery >= 0.9.5",
31 9ac8bfb5 Gabriel DE PERTHUIS
        "vigilo-models",
32 5f2cd70a Francois POIROTTE
        "vigilo-themes-default",
33 d4656036 Gabriel DE PERTHUIS
        "PasteScript >= 1.7", # setup_requires has issues
34 47a5602c Aurelien BOMPARD
        "PasteDeploy",
35
        "Paste",
36 b726cd6f Gabriel DE PERTHUIS
        "decorator != 3.1.0", # Blacklist bad version
37 b4aa7dff Thomas ANDREJAK
        ],
38 49c8da1d Thomas ANDREJAK
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
39
    packages=find_packages(exclude=['ez_setup']),
40
    include_package_data=True,
41
    test_suite='nose.collector',
42 d4656036 Gabriel DE PERTHUIS
    tests_require=tests_require,
43
    extras_require={
44
        'tests': tests_require,
45
        },
46 6f56e540 Francois POIROTTE
    package_data={'vigiboard': [
47
            'i18n/*/LC_MESSAGES/*.mo',
48
        ]},
49 49c8da1d Thomas ANDREJAK
    message_extractors={'vigiboard': [
50
            ('**.py', 'python', None),
51 6f56e540 Francois POIROTTE
        ]},
52 49c8da1d Thomas ANDREJAK
53 d4656036 Gabriel DE PERTHUIS
    entry_points={
54
        'paste.app_factory': [
55
            'main = vigiboard.config.middleware:make_app',
56
            ],
57
        'paste.app_install': [
58
            'main = pylons.util:PylonsInstaller',
59
            ],
60
        'console_scripts': [
61 c1ce3d6a Francois POIROTTE
            'runtests-vigiboard = vigiboard.tests:runtests',
62 d4656036 Gabriel DE PERTHUIS
            ],
63
        },
64 49c8da1d Thomas ANDREJAK
)