Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / setup.py @ ed374445

History | View | Annotate | Download (1.5 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 iif 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
        "MySQL-python",
28
        "tw.jquery",
29
                ],
30
    setup_requires=["PasteScript >= 1.7"],
31
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
32
    packages=find_packages(exclude=['ez_setup']),
33
    include_package_data=True,
34
    test_suite='nose.collector',
35
    tests_require=['WebTest', 'BeautifulSoup'],
36
    package_data={'vigiboard': ['i18n/*/LC_MESSAGES/*.mo',
37
                                 'templates/*/*',
38
                                 'public/*/*']},
39
    message_extractors={'vigiboard': [
40
            ('**.py', 'python', None),
41
            ('templates/**.mako', 'mako', None),
42
            ('templates/**.html', 'genshi', None),
43
            ('public/**', 'ignore', None)]},
44

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

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