About 112,000 results
Open links in new tab
  1. Classifiers - PyPI

    Instructions for how to add Trove classifiers to a project can be found on the Python Packaging User Guide. To read the original classifier specification, refer to PEP 301. To prevent a package from …

  2. python - How to disable uploading a package to PyPi unless --public

    Sep 16, 2016 · Or alternatively, manipulate the distribution metadata (i.e. the classifiers) via self.distribution.metadata (self being the upload instance). You can of course create a completely …

  3. Writing your pyproject.toml - Python Packaging User Guide

    3 days ago · Writing your pyproject.toml ¶ pyproject.toml is a configuration file used by packaging tools, as well as other tools such as linters, type checkers, etc. There are three possible TOML tables in …

  4. Creating a distribution package - Python Basics

    Jun 9, 2026 · Creating a distribution package ¶ Distribution Packages are archives that can be uploaded to a package index such as pypi.org and installed with pip.

  5. classifiers = ["Private :: Do Not Upload"] short-circuits uv publish ...

    Oct 13, 2025 · The idea of classifiers = ["Private :: Do Not Upload"] is that you can publish it to a private registry, but it prevents accidentally publishing internal code by uploading it to PyPI. For a …

  6. Today I Learned: 09/04/2023 - Preventing upload to PyPI with the ...

    Apr 9, 2023 · To prevent a package from being uploaded to PyPI, use the special “Private :: Do Not Upload” classifier. PyPI will always reject packages with classifiers beginning with “Private ::”. I’ve …

  7. python - Disable publishing to PyPi with poetry - Stack Overflow

    Jul 18, 2020 · Official PyPI docs say, "To prevent a package from being uploaded to PyPI, use the special "Private :: Do Not Upload" classifier. PyPI will always reject packages with classifiers …

  8. Poetry setting to make the project private (prevent accidental push)

    By adding Private :: Do not Upload to classifiers in [tool.poetry], you can prevent the project form being made public with a mistake.

  9. An Updated Guide to Setuptools and Pyproject.toml - Xebia

    3 days ago · A full list of classifiers can be found here. If, on the other hand, you want to make sure your package is never uploaded to PyPI, add the Private :: Do Not Upload classifier.

  10. What Are the Different Types of Classifiers? - ML Journey

    Apr 23, 2025 · In the world of machine learning, classification is one of the most widely used techniques for solving real-world problems. Whether it’s spam detection, disease diagnosis, or customer …