Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
172 ashish 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='Wiki-20',
11
    version='0.1',
12
    description='',
13
    author='',
14
    author_email='',
15
    #url='',
16
    install_requires=[
17
        "TurboGears2 >= 2.0b7",
18
        "Babel >=0.9.4",
19
        #can be removed iif use_toscawidgets = False
20
        "toscawidgets >= 0.9.7.1",
21
        "zope.sqlalchemy >= 0.4 ",
22
        "repoze.tm2 >= 1.0a4",
23
                        ],
24
    setup_requires=["PasteScript >= 1.7"],
25
    paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'],
26
    packages=find_packages(exclude=['ez_setup']),
27
    include_package_data=True,
28
    test_suite='nose.collector',
29
    tests_require=['WebTest', 'BeautifulSoup'],
30
    package_data={'wiki20': ['i18n/*/LC_MESSAGES/*.mo',
31
                                 'templates/*/*',
32
                                 'public/*/*']},
33
    message_extractors={'wiki20': [
34
            ('**.py', 'python', None),
35
            ('templates/**.mako', 'mako', None),
36
            ('templates/**.html', 'genshi', None),
37
            ('public/**', 'ignore', None)]},
38
 
39
    entry_points="""
40
    [paste.app_factory]
41
    main = wiki20.config.middleware:make_app
42
 
43
    [paste.app_install]
44
    main = pylons.util:PylonsInstaller
45
    """,
46
)