root/trunk/setup.py

Revision 91, 1.0 kB (checked in by s0undt3ch, 12 months ago)

Updated setup.py to require PylonsGenshi.
Removed the minifications webhelpers from helpers.py, they get "pushed" from MinificationWebHelpers on PylonsGenshi.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Id URL LastChangedDate Rev LastChangedBy
Line 
1#!/usr/bin/env python
2try:
3    from setuptools import setup, find_packages
4except ImportError:
5    from ez_setup import use_setuptools
6    use_setuptools()
7    from setuptools import setup, find_packages
8
9setup(
10    name='Pastie',
11    version='0.0.1',
12    description='Pastebin',
13    author='Pedro Algarvio',
14    author_email='ufs@ufsoft.org',
15    url='http://pastie.ufsoft.org',
16    #install_requires=["Pylons>=0.9.6"],
17    install_requires=["Pylons>=0.9.6", "pygments", "Genshi", "SQLAlchemy",
18                      "PylonsGenshi"],
19    packages=find_packages(exclude=['ez_setup']),
20    include_package_data=True,
21    test_suite='nose.collector',
22    package_data={'pastie': ['i18n/*/LC_MESSAGES/*.mo']},
23    message_extractors = {'pastie': [
24            ('**.py', 'python', None),
25            ('**/templates/**.html', 'genshi', None),
26            ('public/**', 'ignore', None)]},
27    entry_points="""
28    [paste.app_factory]
29    main = pastie.config.middleware:make_app
30
31    [paste.app_install]
32    main = pylons.util:PylonsInstaller
33    """,
34)
Note: See TracBrowser for help on using the browser.