Searched full:setuptools (Results 1 – 25 of 79) sorted by relevance
1234
... setuptools/_imp.py setuptools/_importlib.py setuptools/_itertools.py setuptools/_path.py setuptools ...
23 self.touch(tmpdir, "setuptools-49.1.3-py3-none-any.whl")39 self.assertIsNotNone(packages['setuptools'].wheel_name)43 setuptools_filename = "setuptools-49.1.3-py3-none-any.whl"56 self.assertEqual(packages['setuptools'].version, '49.1.3')57 self.assertEqual(packages['setuptools'].wheel_path,64 self.assertEqual(sorted(packages), ['pip', 'setuptools'])95 unittest.mock.ANY, "setuptools", "pip",110 "setuptools", "pip",121 unittest.mock.ANY, "--user", "setuptools", "pip",132 unittest.mock.ANY, "--upgrade", "setuptools", "pip",[all …]
2 requires = ["setuptools", "wheel"]3 build-backend = "setuptools.build_meta"41 [tool.setuptools]45 [tool.setuptools.packages.find]48 [tool.setuptools.dynamic]
8 import setuptools9 from setuptools.command import build_ext39 class BazelExtension(setuptools.Extension):105 setuptools.setup(
288 ``setuptools``) in the environment. This is done by shelling out to the363 subclass which installs setuptools and pip into a created virtual environment::376 This builder installs setuptools and pip so that you can pip or379 :param nodist: If true, setuptools and pip are not installed into the383 :param progress: If setuptools or pip are installed, the progress of the416 # Can't install pip without setuptools476 Install setuptools in the virtual environment.481 url = 'https://bitbucket.org/pypa/setuptools/downloads/ez_setup.py'482 self.install_script(context, 'setuptools', url)483 # clear up the setuptools archive which gets downloaded[all …]
25 `setuptools <https://setuptools.readthedocs.io/en/latest/>`__ is an38 ``setup.py`` scripts with ``setuptools``, even if the script itself only
130 …', 'distutils.commands', 'distutils.setup_keywords', 'egg_info.writers', 'setuptools.installation']170 group. Read `the setuptools docs171 <https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_398 .. _`entry point API`: https://setuptools.readthedocs.io/en/latest/pkg_resources.html#entry-points399 .. _`metadata API`: https://setuptools.readthedocs.io/en/latest/pkg_resources.html#metadata-api
3 This document is being retained solely until the ``setuptools`` documentation4 at https://setuptools.readthedocs.io/en/latest/setuptools.html
14 # Setuptools 45.0 removed support for Python 2, so to test with Python 2 we15 # pass --no-setuptools here and then install an older setuptools version17 virtualenv -p `which $PYTHON` --no-setuptools test-venv25 pip install "setuptools<45"
14 # We must use setuptools, not distutils, because we need to use the16 from setuptools import setup, Extension, find_packages244 install_requires = ['six>=1.9', 'setuptools']
31 able to edit the source files, you can use the `setuptools`51 [development mode]: https://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode
2 requires = ["setuptools", "wheel", "Cython"]3 build-backend = "setuptools.build_meta"
69 # for newer setuptools, enable the embedded distutils before importing setuptools/distutils to avoi…72 from setuptools import setup, Command, Distribution as _Distribution, Extension as _Extension73 from setuptools.command.build_ext import build_ext as _build_ext74 # NB: distutils imports must remain below setuptools to ensure we use the embedded version
2 requires = ["setuptools>=61.0"]3 build-backend = "setuptools.build_meta"117 [tool.setuptools]
51 * `setuptools`_ is a (largely) drop-in replacement for :mod:`distutils` first58 command to :mod:`distutils`/`setuptools`_. This produces a cross platform64 .. _setuptools: https://setuptools.readthedocs.io/en/latest/ target in Key terms100 python -m pip install setuptools wheel twine
8 from setuptools import setup, Extension, find_packages54 install_requires = ['six>=1.9', 'setuptools']
12 _PACKAGE_NAMES = ('setuptools', 'pip')16 ("setuptools", _SETUPTOOLS_VERSION, "py3"),156 # By default, installing pip and setuptools installs all of the
64 --upgrade-deps Upgrade core dependencies: pip setuptools to the71 Add ``--upgrade-deps`` option to upgrade pip + setuptools to the latest on PyPI
24 import setuptools27 setuptools.setup(
1 from setuptools import setup
110 - Upgrade pip and setuptools.114 $ python -m pip install --upgrade pip setuptools
17 "removal in Python 3.12. Use setuptools or check "
3 from setuptools import Extension, setup
24 - python3-setuptools
15 additional_dependencies: ["setuptools>60.9"]