Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / setup.py @ 7b81cb66

History | View | Annotate | Download (1.57 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
    author='',
14
    author_email='',
15
    #url='',
16
    install_requires=[
17
        "TurboGears2 >= 2.0b7",
18
        "Catwalk >= 2.0.2",
19
        "Babel >=0.9.4",
20
        #can be removed if use_toscawidgets = False
21
        "ToscaWidgets >= 0.9.7.1",
22
        "zope.sqlalchemy >= 0.4 ",
23
        "repoze.tm2 >= 1.0a4",
24
        
25
        "repoze.what-quickstart >= 1.0",
26

    
27
        # Requires postgresql8.3-devel for source install
28
        "psycopg2",
29
        "MySQL-python",
30
        "tw.jquery",
31
                ],
32
    setup_requires=["PasteScript >= 1.7"],
33
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
34
    packages=find_packages(exclude=['ez_setup']),
35
    include_package_data=True,
36
    test_suite='nose.collector',
37
    tests_require=['WebTest', 'BeautifulSoup'],
38
    package_data={'vigiboard': ['i18n/*/LC_MESSAGES/*.mo',
39
                                 'templates/*/*',
40
                                 'public/*/*']},
41
    message_extractors={'vigiboard': [
42
            ('**.py', 'python', None),
43
            ('templates/**.mako', 'mako', None),
44
            ('templates/**.html', 'genshi', None),
45
            ('public/**', 'ignore', None)]},
46

    
47
    entry_points="""
48
    [paste.app_factory]
49
    main = vigiboard.config.middleware:make_app
50

51
    [paste.app_install]
52
    main = pylons.util:PylonsInstaller
53
    """,
54
)