Skip to content

Commit

Permalink
Fix description in pyproject.toml and add various URLs (#18)
Browse files Browse the repository at this point in the history
Fix description in `pyproject.toml` and add a set of URLs like for the
home page and documentation that should end up in the PyPI sidebar.
  • Loading branch information
brandur authored Jul 5, 2024
1 parent 779dfa0 commit 938a7f6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fix `pyproject.toml` description and add various URLs like to homepage, docs, and GitHub repositories. [PR #408](https://github.com/riverqueue/river/pull/408).

## [0.1.0] - 2024-07-04

### Added
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "riverqueue"
version = "0.1.0"
description = "Add your description here"
description = "Python insert-only client for River."
authors = [
{ name = "Eric Hauser", email = "ewhauser@gmail.com" },
{ name = "Brandur Leach", email = "brandur@brandur.org" }
Expand All @@ -16,6 +16,13 @@ requires-python = ">= 3.8"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project.urls]
Homepage = "https://riverqueue.com"
Documentation = "https://riverqueue.com/docs"
Repository = "https://github.com/riverqueue/riverqueue-python.git"
Issues = "https://github.com/riverqueue/riverqueue-python/issues"
Changelog = "https://github.com/riverqueue/riverqueue-python/blob/master/CHANGELOG.md"

[tool.rye]
managed = true
dev-dependencies = [
Expand Down

0 comments on commit 938a7f6

Please sign in to comment.