root / notsoquickwiki / trunk / setup.py

Revision 81, 1.2 kB (checked in by phil, 12 months ago)

Initial import into public svn

Line 
1try:
2    from setuptools import setup, find_packages
3except ImportError:
4    from ez_setup import use_setuptools
5    use_setuptools()
6    from setuptools import setup, find_packages
7
8setup(
9    name='NotSoQuickWiki',
10    version="0.1.5",
11    description="Extension of Quciwiki Tutorial",
12    author='Philip Cooper',
13    author_email='philip.cooper@openvest.com',
14    url="http://www.openvest.com/trac/wiki/NotSoQuickWiki",
15    install_requires=["Pylons>=0.9.6.1","docutils==0.4","SQLAlchemy>=0.4.0beta5","Authkit>=0.4.0","rdflib>=2.4.0"],
16    #  TODO need to add ToscaWidgets, twforms twTinyMCE (maybe ver on PasteScript and PasteDeploy ???)
17    packages=find_packages(exclude=['ez_setup']),
18    include_package_data=True,
19    test_suite='nose.collector',
20    package_data={'notsoquickwiki': ['i18n/*/LC_MESSAGES/*.mo']},
21    #message_extractors = {'notsoquickwiki': [
22    #        ('**.py', 'python', None),
23    #        ('templates/**.mako', 'mako', None),
24    #        ('public/**', 'ignore', None)]},
25    entry_points="""
26    [paste.app_factory]
27    main = notsoquickwiki.config.middleware:make_app
28
29    [paste.app_install]
30    main = pylons.util:PylonsInstaller
31    """,
32)
Note: See TracBrowser for help on using the browser.