root/sandbox/PylonsGenshi/trunk/setup.py

Revision 109, 1.4 kB (checked in by s0undt3ch, 12 months ago)

Don't depend on ez_setup, we don't provide it.

  • 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
2# -*- coding: utf-8 -*-
3# vim: sw=4 ts=4 fenc=utf-8
4# =============================================================================
5# $Id$
6# =============================================================================
7#             $URL$
8# $LastChangedDate$
9#             $Rev$
10#   $LastChangedBy$
11# =============================================================================
12# Copyright (C) 2007 UfSoft.org - Pedro Algarvio <ufs@ufsoft.org>
13#
14# Please view LICENSE for additional licensing information.
15# =============================================================================
16
17from setuptools import setup, find_packages
18
19VERSION = '0.2.0'
20
21setup(
22    name = 'PylonsGenshi',
23    version = VERSION,
24    description = 'Pylons based Paster Project Template Using Genshi As ' + \
25                  'The Templating Language',
26    long_description = open('README.txt').read(),
27    keywords = 'web wsgi pylons framework genshi',
28    license = 'BSD',
29    author = 'Pedro Algarvio',
30    author_email = 'ufs@ufsoft.org',
31    url = 'http://pastie.ufsoft.org/wiki/PylonsGenshi',
32    packages = find_packages(),
33    zip_safe = False,
34    include_package_data = True,
35    install_requires = ['Pylons', 'Genshi'],
36    extras_require = { 'minification': ['MinificationWebHelpers'] },
37    entry_points = """
38    [paste.paster_create_template]
39    pylonsgenshi = pylonsgenshi.template:PylonsGenshiTemplate
40    """
41)
Note: See TracBrowser for help on using the browser.