Skip to content

Commit

Permalink
[s3] add s3 extras_require (#1284)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneier committed Sep 3, 2023
1 parent 53d6675 commit 89ca5bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/backends/amazon-S3.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
Amazon S3
=========

Usage
*****
This backend implements the Django File Storage API for Amazon Web Services's (AWS) Simple Storage Service (S3).

There is only one supported backend for interacting with Amazon's S3,
``S3Boto3Storage``, based on the boto3 library.
Installation
------------

The minimum required version of ``boto3`` is 1.4.4 although we always recommend
the most recent.
The backend is based on the boto3 library which must be installed; the minimum required version is 1.4.4 although
we always recommend the most recent. Either add it to your requirements or use the optional ``s3`` extra e.g::

pip install django-storages[s3]

Settings
--------
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ libcloud =
apache-libcloud
sftp =
paramiko >= 1.15.0
s3 =
boto3 >= 1.4.4

[flake8]
exclude =
Expand Down

0 comments on commit 89ca5bc

Please sign in to comment.