|
| 1 | +#!/usr/bin/env python |
| 2 | +# |
| 3 | +# $Id: setup.py 120 2003-04-23 12:18:54Z doughellmann $ |
| 4 | +# |
| 5 | +# Time-stamp: <06/12/31 12:03:26 dhellmann> |
| 6 | +# |
| 7 | +# Copyright 2001 Doug Hellmann. |
| 8 | +# |
| 9 | +# |
| 10 | +# All Rights Reserved |
| 11 | +# |
| 12 | +# Permission to use, copy, modify, and distribute this software and |
| 13 | +# its documentation for any purpose and without fee is hereby |
| 14 | +# granted, provided that the above copyright notice appear in all |
| 15 | +# copies and that both that copyright notice and this permission |
| 16 | +# notice appear in supporting documentation, and that the name of Doug |
| 17 | +# Hellmann not be used in advertising or publicity pertaining to |
| 18 | +# distribution of the software without specific, written prior |
| 19 | +# permission. |
| 20 | +# |
| 21 | +# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 22 | +# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN |
| 23 | +# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR |
| 24 | +# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS |
| 25 | +# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, |
| 26 | +# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 27 | +# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 28 | +# |
| 29 | +"""Distutils setup file for Proctor |
| 30 | +
|
| 31 | +""" |
| 32 | + |
| 33 | +# |
| 34 | +# Import system modules |
| 35 | +# |
| 36 | +from distutils.core import setup |
| 37 | +import os |
| 38 | + |
| 39 | +# |
| 40 | +# Import Local modules |
| 41 | +# |
| 42 | + |
| 43 | +# |
| 44 | +# Module |
| 45 | +# |
| 46 | + |
| 47 | +long_description = open('README', 'rt').read() |
| 48 | + |
| 49 | +setup ( |
| 50 | + name = 'virtualenvwrapper', |
| 51 | + version = 'VERSION', |
| 52 | + |
| 53 | + description = 'Enhancements to virtualenv', |
| 54 | + long_description = long_description, |
| 55 | + |
| 56 | + author = 'Doug Hellmann', |
| 57 | + author_email = '[email protected]', |
| 58 | + |
| 59 | + url = 'http://www.doughellmann.com/projects/virtualenvwrapper/', |
| 60 | + download_url = 'http://www.doughellmann.com/downloads/Proctor-VERSION.tar.gz', |
| 61 | + |
| 62 | + classifiers = [ 'Development Status :: 5 - Production/Stable', |
| 63 | + 'License :: OSI Approved :: BSD License', |
| 64 | + 'Programming Language :: Python', |
| 65 | + 'Intended Audience :: Developers', |
| 66 | + 'Environment :: Console', |
| 67 | + ], |
| 68 | + |
| 69 | + platforms = ('Any',), |
| 70 | + |
| 71 | + scripts = ['virtualenvwrapper_bashrc', |
| 72 | + ], |
| 73 | + |
| 74 | + provides=['virtualenvwrapper', |
| 75 | + ], |
| 76 | + requires=['virtualenv'], |
| 77 | + |
| 78 | + data_files=[('docs', ['README.html']), |
| 79 | + ], |
| 80 | + ) |
| 81 | + |
0 commit comments