aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-01-07 13:03:32 -0500
committerGitHub <noreply@github.com>2017-01-07 13:03:32 -0500
commit609c1e9d0f36914f180a5ed95f9477ea9523edf5 (patch)
tree2fc21fe009cc8675d8649b7a290d7f759eacbbce
parent8db1d2d4f72f347f3fd5a9d8cf4a225173251318 (diff)
parent37a48e9a7a5ae5ac770b05b8f1ff52bdceda3cae (diff)
downloadexternal_python_setuptools-609c1e9d0f36914f180a5ed95f9477ea9523edf5.tar.gz
external_python_setuptools-609c1e9d0f36914f180a5ed95f9477ea9523edf5.tar.bz2
external_python_setuptools-609c1e9d0f36914f180a5ed95f9477ea9523edf5.zip
Merge pull request #910 from plannigan/master
Document use of environment markers in extras_require
-rw-r--r--docs/setuptools.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index 458ad59b..5c72445b 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -761,6 +761,40 @@ so that Package B doesn't have to remove the ``[PDF]`` from its requirement
specifier.
+.. _Platform Specific Dependencies:
+
+
+Declaring platform specific dependencies
+----------------------------------------
+
+Sometimes a project might require a dependency to run on a specific platform.
+This could to a package that back ports a module so that it can be used in
+older python versions. Or it could be a package that is required to run on a
+specific operating system. This will allow a project to work on multiple
+different platforms without installing dependencies that are not required for
+a platform that is installing the project.
+
+For example, here is a project that uses the ``enum`` module and ``pywin32``::
+
+ setup(
+ name="Project",
+ ...
+ install_requires=[
+ 'enum34;python_version<"3.4"',
+ 'pywin32 >= 1.0;platform_system=="Windows"'
+ ]
+ )
+
+Since the ``enum`` module was added in Python 3.4, it should only be installed
+if the python version is earlier. Since ``pywin32`` will only be used on
+windows, it should only be installed when the operating system is Windows.
+Specifying version requirements for the dependencies is supported as normal.
+
+The environmental markers that may be used for testing platform types are
+detailed in `PEP 508`_.
+
+.. _PEP 508: https://www.python.org/dev/peps/pep-0508/
+
Including Data Files
====================