- Timestamp:
- 08-01-2008 00:13:07 (12 months ago)
- Author:
- s0undt3ch
- Message:
-
Don't depend on ez_setup, we don't provide it.
- Location:
- sandbox/PylonsGenshi/trunk
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r98
|
r109
|
|
| 2 | 2 | Name: PylonsGenshi |
| 3 | 3 | Version: 0.1.0 |
| 4 | | Summary: Pylons Project Template Using Genshi As The Templating Language |
| | 4 | Summary: Pylons based Paster Project Template Using Genshi As The Templating Language |
| 5 | 5 | Home-page: http://pastie.ufsoft.org/wiki/PylonsGenshi |
| 6 | 6 | Author: Pedro Algarvio |
-
|
r98
|
r109
|
|
| 15 | 15 | # ============================================================================= |
| 16 | 16 | |
| | 17 | from setuptools import setup, find_packages |
| 17 | 18 | |
| 18 | | try: |
| 19 | | from setuptools import setup, find_packages |
| 20 | | except ImportError: |
| 21 | | from ez_setup import use_setuptools |
| 22 | | use_setuptools() |
| 23 | | from setuptools import setup, find_packages |
| 24 | | |
| 25 | | VERSION = '0.1.0' |
| | 19 | VERSION = '0.2.0' |
| 26 | 20 | |
| 27 | 21 | setup( |
| … |
… |
|
| 36 | 30 | author_email = 'ufs@ufsoft.org', |
| 37 | 31 | url = 'http://pastie.ufsoft.org/wiki/PylonsGenshi', |
| 38 | | packages = find_packages(exclude=['ez_setup']), |
| | 32 | packages = find_packages(), |
| 39 | 33 | zip_safe = False, |
| 40 | 34 | include_package_data = True, |
Download in other formats:
|
|