| 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 | |
|---|
| 17 | from setuptools import setup, find_packages |
|---|
| 18 | |
|---|
| 19 | VERSION = '0.2.0' |
|---|
| 20 | |
|---|
| 21 | setup( |
|---|
| 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 | ) |
|---|