Skip to content

Commit 6d8d90c

Browse files
committed
closes #70 by adding a list of supported shells and python versions to documentation and trove classifiers
1 parent 343a9f9 commit 6d8d90c

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
2010-12-26 Doug Hellmann <[email protected]>
22

33
* setup.py: Change "requires" to "install_requires" so pip will
4-
try to install virtualenv if it is not already there.
4+
try to install virtualenv if it is not already there. Add trove
5+
classifiers for the supported Python versions.
56

67
* virtualenvwrapper.sh (virtualenvwrapper_get_python_version): Use
78
python's -V option and cut to get the version instead of a python

docs/en/install.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
Installation
33
============
44

5+
Supported Shells
6+
================
7+
8+
virtualenvwrapper is a set of shell *functions* defined in Bourne
9+
shell compatible syntax. It is tested under `bash`, `ksh`, and `zsh`.
10+
It may work with other shells, so if you find that it does work with a
11+
shell not listed here please let me know. If you can modify it to
12+
work with another shell, without completely rewriting it, send a pull
13+
request through the bitbucket project page. If you write a clone to
14+
work with an incompatible shell, let me know and I will link to it
15+
from this page.
16+
17+
Python Versions
18+
===============
19+
20+
virtualenvwrapper is tested under Python 2.4 - 2.7.
21+
522
Basic Installation
623
==================
724

@@ -13,6 +30,13 @@ You will want to install it into the global Python site-packages area,
1330
along with virtualenv. You may need administrative privileges to do
1431
that.
1532

33+
An alternative to installing it into the global site-packages is to
34+
add it to your user local directory (usually `~/.local`).
35+
36+
::
37+
38+
$ pip install --install-option="--user" virtualenvwrapper
39+
1640
WORKON_HOME
1741
===========
1842

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ def find_package_data(
126126
classifiers = [ 'Development Status :: 5 - Production/Stable',
127127
'License :: OSI Approved :: BSD License',
128128
'Programming Language :: Python',
129+
'Programming Language :: Python :: 2',
130+
'Programming Language :: Python :: 2.4',
131+
'Programming Language :: Python :: 2.5',
132+
'Programming Language :: Python :: 2.6',
133+
'Programming Language :: Python :: 2.7',
129134
'Intended Audience :: Developers',
130135
'Environment :: Console',
131136
],

0 commit comments

Comments
 (0)