About 2,450,000 results
Open links in new tab
  1. What is the purpose of Python setuptools? - Stack Overflow

    Dec 19, 2016 · Setuptools is a package development process library designed to facilitate packaging Python projects by enhancing the Python standard library distutils (distribution …

  2. Python 3: ImportError "No Module named Setuptools"

    Explains how to resolve the ImportError "No Module named Setuptools" in Python 3 by providing solutions and troubleshooting tips.

  3. python - pip fails because it could not find a version of setuptools ...

    May 22, 2024 · pip fails because it could not find a version of setuptools but it's installed? Asked 1 year, 6 months ago Modified 1 year, 6 months ago Viewed 8k times

  4. Add py.typed as package data with setuptools in pyproject.toml

    Apr 21, 2023 · Yes, you should add py.typed to your package's source folder (same level as __init__.py). This informs type checkers, like mypy, that your package supports typing. See …

  5. setuptools vs. distutils: why is distutils still a thing?

    Aug 16, 2014 · Setuptools was developed to overcome Distutils' limitations, and is not included in the standard library. It introduced a command-line utility called easy_install.

  6. pkg_resources is deprecated as an API - Stack Overflow

    Apr 19, 2023 · 26 There is a related discussion on pip 's ticket tracker. It seems like this issue has been solved in pip 23.1.1: " Revert pkg_resources (via setuptools) back to 65.6.3 ". And pip …

  7. setuptools - What's the difference between the [tool.poetry] and ...

    Feb 10, 2023 · Which version of poetry are you using to have arrived at the formatting of the [tool.poetry] section you shared here using poetry init? Based on what I've seen poetry do and …

  8. ImportError: No module named 'setuptools.build_meta'

    When trying to install a package (zipline, in this case), it's struggling to find the setuptools.build_meta file, which I do have in the site-packages\\setuptools directory. I tried …

  9. ModuleNotFoundError: No module named 'distutils' in Python 3.12

    Oct 7, 2023 · If you want to use that distribution, you'll need to either install setuptools, which now also provides distutils, or sideload distutils from a third party source (e.g. a system package, …

  10. setuptools: package data folder location - Stack Overflow

    I use setuptools to distribute my python package. Now I need to distribute additional datafiles. From what I've gathered fromt the setuptools documentation, I need to have my data files …