Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/codingjoe/django-s3file/raw/main/images/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://github.com/codingjoe/django-s3file/raw/main/images/logo-light.svg">
<img alt="Django S3file: A lightweight file upload input for Django and Amazon S3" src="https://github.com/codingjoe/django-s3file/raw/main/images/logo-light.svg">
</picture>
<br>
<a href="https://github.com/codingjoe/django-s3file?tab=readme-ov-file">Documentation</a> |
<a href="https://github.com/codingjoe/django-s3file/issues/new/choose">Issues</a> |
<a href="https://github.com/codingjoe/django-s3file/releases">Changelog</a> |
<a href="https://github.com/sponsors/codingjoe">Funding</a> 💚
</p>

# django-s3file

A lightweight file upload input for Django and Amazon S3.
Expand Down
20 changes: 20 additions & 0 deletions images/logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions images/logo-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,14 @@ test = [
]

[project.urls]
Project-URL = "https://github.com/codingjoe/django-s3file"
# https://packaging.python.org/en/latest/specifications/well-known-project-urls/#well-known-labels
Homepage = "https://github.com/codingjoe/django-s3file"
Changelog = "https://github.com/codingjoe/django-s3file/releases"
Source = "https://github.com/codingjoe/django-s3file"
Releasenotes = "https://github.com/codingjoe/django-s3file/releases/latest"
Copy link

Copilot AI Dec 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The label "Releasenotes" should be "Release Notes" (two words) to match standard conventions. According to Python packaging documentation for well-known project URLs, release notes should be specified as two separate words or hyphenated.

Suggested change
Releasenotes = "https://github.com/codingjoe/django-s3file/releases/latest"
"Release Notes" = "https://github.com/codingjoe/django-s3file/releases/latest"

Copilot uses AI. Check for mistakes.
Documentation = "https://github.com/codingjoe/django-s3file?tab=readme-ov-file"
Issues = "https://github.com/codingjoe/django-s3file/issues"
Funding = "https://github.com/sponsors/codingjoe"

[tool.flit.module]
name = "s3file"
Expand Down
Loading