Skip to content

Commit

Permalink
Add note on private classifier (#8783)
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin authored Nov 7, 2024
1 parent 2340d73 commit 387a709
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/guides/publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,22 @@ build it by default. This means that your project may not be ready for distribut
the effect of declaring a build system in the
[project concept](../concepts/projects.md#build-systems) documentation.

!!! note

If you have internal packages that you do not want to be published, you can mark them as
private:

```toml
[project]
classifiers = ["Private :: Do Not Upload"]
```

This setting makes PyPI reject your uploaded package from publishing. It does not affect
security or privacy settings on alternative registries.

We also recommend only generating per-project tokens: Without a PyPI token matching the project,
it can't be accidentally published.

## Building your package

Build your package with `uv build`:
Expand Down

0 comments on commit 387a709

Please sign in to comment.