[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.216.214: ~ $
==================================================
Building and Distributing Packages with Setuptools
==================================================

The first step towards sharing a Python library or program is to build a
distribution package [#package-overload]_. This includes adding a set of
additional files containing metadata and configuration to not only instruct
``setuptools`` on how the distribution should be built but also
to help installer (such as :pypi:`pip`) during the installation process.

This document contains information to help Python developers through this
process. Please check the :doc:`/userguide/quickstart` for an overview of
the workflow.

Also note that ``setuptools`` is what is known in the community as :pep:`build
backend <517#terminology-and-goals>`, user facing interfaces are provided by tools
such as :pypi:`pip` and :pypi:`build`. To use ``setuptools``, one must
explicitly create a ``pyproject.toml`` file as described :doc:`/build_meta`.


Contents
========

.. toctree::
    :maxdepth: 1

    quickstart
    package_discovery
    dependency_management
    development_mode
    entry_point
    datafiles
    ext_modules
    distribution
    miscellaneous
    extension
    declarative_config
    pyproject_config

---

.. rubric:: Notes

.. [#package-overload]
   A :term:`Distribution Package` is also referred in the Python community simply as "package"
   Unfortunately, this jargon might be a bit confusing for new users because the term package
   can also to refer any :term:`directory <package>` (or sub directory) used to organize
   :term:`modules <module>` and auxiliary files.

Filemanager

Name Type Size Permission Actions
datafiles.rst File 17.99 KB 0644
declarative_config.rst File 12.43 KB 0644
dependency_management.rst File 11.36 KB 0644
development_mode.rst File 11.84 KB 0644
distribution.rst File 10.07 KB 0644
entry_point.rst File 17.94 KB 0644
ext_modules.rst File 7.05 KB 0644
extension.rst File 12.99 KB 0644
index.rst File 1.6 KB 0644
miscellaneous.rst File 4.24 KB 0644
package_discovery.rst File 18.35 KB 0644
pyproject_config.rst File 11.44 KB 0644
quickstart.rst File 15.79 KB 0644