diff options
| author | Joshua Watt <JPEWhacker@gmail.com> | 2020-11-10 15:29:17 -0600 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-04 10:55:02 +0000 |
| commit | 87a281831d36c2ee9a759103ce7838875dbca021 (patch) | |
| tree | d3dbb49f69a9d40f9370d10c5bafe085dc4a8c3a /documentation/Pipfile | |
| parent | ee78efdbfc2e63d765a874f8e3bacf0295ba32c7 (diff) | |
| download | poky-87a281831d36c2ee9a759103ce7838875dbca021.tar.gz | |
documentation: Add Pipenv support
Adds a Pipfile so that Pipenv can be used to automatically install all
the dependencies required to build the documentation
(From yocto-docs rev: 5fc0a3011c47388d9c6447c3be00fefcbaf00f5c)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 31658ad30827d38dcd4ea83bcfb828441c7c3eca)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/Pipfile')
| -rw-r--r-- | documentation/Pipfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/documentation/Pipfile b/documentation/Pipfile new file mode 100644 index 0000000000..7ee1d22905 --- /dev/null +++ b/documentation/Pipfile | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | [[source]] | ||
| 2 | name = "pypi" | ||
| 3 | url = "https://pypi.org/simple" | ||
| 4 | verify_ssl = true | ||
| 5 | |||
| 6 | [dev-packages] | ||
| 7 | |||
| 8 | [packages] | ||
| 9 | sphinx = "*" | ||
| 10 | sphinx-rtd-theme = "*" | ||
| 11 | pyyaml = "*" | ||
| 12 | |||
| 13 | [requires] | ||
| 14 | python_version = "3" | ||
