Fix docs for environment markers in extras

The docs for environment markers in setup.cfg [extras] had a
couple of issues.

1) There was a space after the package name.
2) python_environment was used where python_version is the marker.

Change-Id: Idbc72c45ae240356ca39eeba6db754f56c6a0f23
This commit is contained in:
Brant Knudson 2015-07-30 15:06:39 -05:00
parent 89402a7177
commit 1e4d883684
1 changed files with 3 additions and 3 deletions

View File

@ -159,10 +159,10 @@ constraints on the environment, you can use::
[extras]
security =
aleph
bet :python_environment=='3.2'
gimel :python_environment=='2.7'
bet:python_version=='3.2'
gimel:python_version=='2.7'
testing =
quux :python_environment=='2.7'
quux:python_version=='2.7'
long_description
----------------