fix: links in configuring projects doc (#10710)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

<!-- What's the purpose of the change? What does it do, and why? -->

Fix invalid links in [configuring
projects](https://docs.astral.sh/uv/concepts/projects/config/#entry-points)
doc.

## Test Plan

<!-- How was it tested? -->
This commit is contained in:
Se7en 2025-01-18 02:39:56 +08:00 committed by GitHub
parent 5e86e0bf4f
commit d5b98fb76c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

4
.gitignore vendored
View file

@ -35,3 +35,7 @@ profile.json
# macOS
**/.DS_Store
# IDE
.idea
.vscode

View file

@ -22,9 +22,9 @@ affects selection of dependency versions (they must support the same Python vers
[Entry points](https://packaging.python.org/en/latest/specifications/entry-points/#entry-points) are
the official term for an installed package to advertise interfaces. These include:
- [Command line interfaces]()
- [Graphical user interfaces]()
- [Plugin entry points]()
- [Command line interfaces](#command-line-interfaces)
- [Graphical user interfaces](#graphical-user-interfaces)
- [Plugin entry points](#plugin-entry-points)
!!! important