Searched full:sdist (Results 1 – 25 of 180) sorted by relevance
12345678
2 import distutils.command.sdist as orig22 class sdist(sdist_add_defaults, orig.sdist): class23 """Smart sdist that finds anything supported by revision control"""60 data = ('sdist', '', file)65 orig.sdist.initialize_options(self)80 orig.sdist.make_distribution(self)117 Since the ``sdist`` class is also used to compute the MANIFEST155 orig.sdist.make_release_tree(self, base_dir, files)157 # Save any egg_info command line options used to create this sdist
1 """sdist tests"""15 from setuptools.command.sdist import sdist126 cmd = sdist(dist)144 cmd = sdist(dist)175 cmd = sdist(dist)193 cmd = sdist(dist)205 cmd = sdist(dist)222 cmd = sdist(dist)245 cmd = sdist(dist)361 cmd = sdist(dist)[all …]
93 def sdist(distname, version): function100 sdist('foobar', '2.4'),101 sdist('bits', '4.2'),102 sdist('bobs', '6.0'),103 sdist('pieces', '0.6'),
5 from setuptools.command.sdist import sdist as _sdist9 from distutils.command.sdist import sdist as _sdist28 class sdist(_sdist): class65 cmdclass={'install': install, 'sdist': sdist},
9 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command12 python setup.py sdist14 (assuming you haven't specified any :command:`sdist` options in the setup script15 or config file), :command:`sdist` creates the archive of the default format for22 python setup.py sdist --formats=gztar,zip71 python setup.py sdist --owner=root --group=root80 generate one), the :command:`sdist` command puts a minimal default set into the115 :command:`sdist` command processes this template and generates a manifest based125 :command:`sdist` comparing its modification time to the one of133 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`[all …]
9 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command12 python setup.py sdist14 (assuming you haven't specified any :command:`sdist` options in the setup script15 or config file), :command:`sdist` creates the archive of the default format for22 python setup.py sdist --formats=gztar,zip74 python setup.py sdist --owner=root --group=root83 generate one), the :command:`sdist` command puts a minimal default set into the118 :command:`sdist` command processes this template and generates a manifest based128 :command:`sdist` comparing its modification time to the one of136 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`[all …]
109 Distribution (or "sdist")`.119 include all files tracked by your Revision Control System into the ``sdist``.126 should be part of the ``sdist`` (or not).130 Once the correct files are present in the ``sdist``, they can then be used by141 folder, the ``tests`` directory will be present in the ``sdist`` but not in the142 ``wheel`` [#wheel-vs-sdist]_.149 You can think about the build process as two stages: first the ``sdist``150 will be created and then the ``wheel`` will be produced from that ``sdist``.152 .. [#wheel-vs-sdist]153 This happens because the ``sdist`` can contain files that are useful during
36 Creates a sdist .tar.gz and a bdist_wheel --univeral .whl54 sdist = '%s-%s.tar.gz' % pkg_name_info56 setuptools.sandbox.run_setup(setup, ['-q', 'sdist'])57 print(' - created %s' % sdist)58 _list_tgz(os.path.join(package_root, 'dist', sdist))69 setuptools.sandbox.run_setup(tests_setup, ['-q', 'sdist'])
30 from setuptools.command import sdist103 When installing the sdist, e.g., with `pip install tink --no-binary` or104 `python3 -m pip install -v path/to/sdist.tar.gz`, setuptools unpacks the105 sdist in a temporary folder that contains only the python/ folder, and then246 class SdistCmd(sdist.sdist):247 """A command that patches the workspace before creating an sdist."""251 sdist.sdist.run(self)276 'sdist': SdistCmd,
103 ${SETARCH_CMD} "${PYTHON}" setup.py sdist144 ${SETARCH_CMD} "${PYTHON}" tools/distrib/python/grpcio_tools/setup.py sdist152 ${SETARCH_CMD} "${PYTHON}" src/python/grpcio_observability/setup.py sdist259 # Note(lidiz) setuptools's "sdist" command creates a source tarball, which267 sdist bdist_wheel install272 sdist bdist_wheel277 preprocess build_package_protos sdist bdist_wheel282 preprocess build_package_protos sdist bdist_wheel287 preprocess build_package_protos sdist bdist_wheel292 preprocess sdist bdist_wheel[all …]
7 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command10 python setup.py sdist12 (assuming you haven't specified any :command:`sdist` options in the setup script13 or config file), :command:`sdist` creates the archive of the default format for20 python setup.py sdist --formats=gztar,zip62 python setup.py sdist --owner=root --group=root71 generate one), the :command:`sdist` command puts a minimal default set into the105 :command:`sdist` command processes this template and generates a manifest based115 :command:`sdist` comparing its modification time to the one of123 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`[all …]
87 ${SETARCH_CMD} "${PYTHON}" setup.py sdist128 ${SETARCH_CMD} "${PYTHON}" tools/distrib/python/grpcio_tools/setup.py sdist217 # Note(lidiz) setuptools's "sdist" command creates a source tarball, which224 sdist bdist_wheel229 preprocess build_package_protos sdist bdist_wheel234 preprocess build_package_protos sdist bdist_wheel239 preprocess build_package_protos sdist bdist_wheel244 preprocess sdist bdist_wheel249 sdist bdist_wheel258 sdist bdist_wheel
42 sdist:43 name: Test sdist install61 - name: Build and install sdist66 echo "::notice::Installing sdist: $path_to_file"
78 # We don't need "--no-binary :all:" since we specify the path to the sdist.118 sdist = retrieve_sdist(package, version, tmp_path)119 deps = build_deps(package, sdist)128 run([*venv_pip, "install", *SDIST_OPTIONS, sdist])139 """Either use cached sdist file or download it from PyPI"""169 dists = [d for d in release if d["packagetype"] == "sdist"]171 raise ValueError(f"No sdist found for {package} {version}")
1 """Tests for distutils.command.sdist."""26 from distutils.command.sdist import sdist, show_formats88 cmd = sdist(dist)95 # file, then launches sdist to check they get pruned on all systems111 # now building a sdist137 # now building a sdist171 # create the sdist command with unicode parameters174 # create the sdist as gztar and run the command327 # now building a sdist347 # building a sdist again
27 # TODO: sdist bdist_wheel29 python setup.py sdist56 # TODO: sdist bdist_wheel58 ./venv-36/bin/python setup.py sdist
4 .PHONY: gen_const install install3 install_cython sdist sdist3 bdist bdist3 clean check43 sdist: target45 $(PYTHON2) setup.py sdist register upload50 $(PYTHON3) setup.py sdist register upload
108 sdist = setuptools.command.sdist:sdist148 [sdist]
1 """Tests for distutils.command.sdist."""20 from distutils.command.sdist import sdist, show_formats82 cmd = sdist(dist)89 # file, then launches sdist to check they get pruned on all systems105 # now building a sdist137 # now building a sdist444 # now building a sdist464 # building a sdist again
1 """Tests for distutils.command.sdist."""25 from distutils.command.sdist import sdist, show_formats87 cmd = sdist(dist)94 # file, then launches sdist to check they get pruned on all systems110 # now building a sdist142 # now building a sdist448 # now building a sdist468 # building a sdist again
22 - name: Build and check sdist24 python setup.py sdist25 - name: Upload sdist
18 sdist = setuptools.command.sdist:sdist
40 # This allows us to send the LICENSE and docs when creating a sdist. Wheels42 # to be included, the command must be "python setup.py sdist".44 if sys.argv[1:] == ['sdist'] or sorted(sys.argv[1:]) == ['-q', 'sdist']:
41 # This allows us to send the LICENSE when creating a sdist. Wheels43 # to be included, the command must be "python setup.py sdist".44 if sys.argv[1:] == ['sdist'] or sorted(sys.argv[1:]) == ['-q', 'sdist']:
43 python setup.py sdist44 pip --no-cache-dir install --upgrade sdist/horovod*.tar.gz && \45 rm -rf sdist && \