Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / setup.py @ b2fadcd2

History | View | Annotate | Download (1.9 KB)

1
# -*- coding: utf-8 -*-
2
# vim:set expandtab tabstop=4 shiftwidth=4:
3
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
tests_require = ['WebTest', 'BeautifulSoup']
11

    
12
setup(
13
    name='vigiboard',
14
    version='0.1',
15
    description='IHM Module for the Dashboard',
16
    author="""Thomas ANDREJAK""",
17
    author_email="""thomas.andrejak@gmail.com""",
18
    zip_safe=False,
19
    install_requires=[
20
        "tg.devtools",
21
        "TurboGears2 >= 2.0b7",
22
        "Catwalk >= 2.0.2",
23
        "Babel >=0.9.4",
24
        "ToscaWidgets >= 0.9.7.1",
25
        "zope.sqlalchemy >= 0.4 ",
26
        "repoze.tm2 >= 1.0a4",
27
        "repoze.what-quickstart >= 1.0",
28
        "psycopg2",
29
        "tw.jquery >= 0.9.5",
30
        "vigilo-models",
31
        "vigilo-themes-default",
32
        "PasteScript >= 1.7", # setup_requires has issues
33
        "PasteDeploy",
34
        "Paste",
35
        "decorator != 3.1.0", # Blacklist bad version
36
        "vigilo-turbogears",
37
        #"modwsgideploy",
38
        ],
39

    
40
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
41
    packages=find_packages(exclude=['ez_setup']),
42
    include_package_data=True,
43
    test_suite='nose.collector',
44
    tests_require=tests_require,
45
    extras_require={
46
        'tests': tests_require,
47
        },
48
    package_data={'vigiboard': [
49
            'i18n/*/LC_MESSAGES/*.mo',
50
        ]},
51
    message_extractors={'vigiboard': [
52
            ('**.py', 'python', None),
53
        ]},
54

    
55
    entry_points={
56
        'paste.app_factory': [
57
            'main = vigiboard.config.middleware:make_app',
58
            ],
59
        'paste.app_install': [
60
            'main = pylons.util:PylonsInstaller',
61
            ],
62
        'console_scripts': [
63
            'runtests-vigiboard = vigiboard.tests:runtests',
64
            'paster = paste.script.command:run',
65
            ],
66
        },
67
)
68