Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / setup.py @ 0931fc44

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

    
41
    entry_points="""
42
    [paste.app_factory]
43
    main = vigigraph.config.middleware:make_app
44

45
    [paste.app_install]
46
    main = pylons.util:PylonsInstaller
47
    """,
48
)