Home
last modified time | relevance | path

Searched full:sdist (Results 1 – 25 of 180) sorted by relevance

12345678

/external/python/pybind11/
Dsetup.py15 import setuptools.command.sdist
22 # PYBIND11_GLOBAL_SDIST will build a different sdist, with the python-headers
28 extra_cmd = 'cmdclass["sdist"] = SDist\n'
63 # Use our input files instead when making the SDist (and anything that depends
65 class SDist(setuptools.command.sdist.sdist): class
67 setuptools.command.sdist.sdist.make_release_tree(self, base_dir, files)
115 exec(code, {"SDist": SDist})
/external/python/setuptools/setuptools/command/
Dsdist.py2 import distutils.command.sdist as orig
22 class sdist(sdist_add_defaults, orig.sdist): class
23 """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 MANIFEST
155 orig.sdist.make_release_tree(self, base_dir, files)
157 # Save any egg_info command line options used to create this sdist
Degg_info.py24 from setuptools.command.sdist import sdist
25 from setuptools.command.sdist import walk_revctrl
232 # (e.g. sdist, bdist_wininst, etc.)
524 class manifest_maker(sdist):
567 sdist.warn(self, msg)
572 suppress missing-file warnings from sdist
577 sdist.add_defaults(self)
588 # the script called to create the sdist
613 (``sdist``) will try to include data files, which
728 Get a -r### off of PKG-INFO Version in case this is an sdist of
/external/python/setuptools/setuptools/tests/
Dtest_sdist.py1 """sdist tests"""
15 from setuptools.command.sdist import sdist
126 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 …]
Dtest_virtualenv.py93 def sdist(distname, version): function
100 sdist('foobar', '2.4'),
101 sdist('bits', '4.2'),
102 sdist('bobs', '6.0'),
103 sdist('pieces', '0.6'),
/external/python/pycparser/
Dsetup.py5 from setuptools.command.sdist import sdist as _sdist
9 from distutils.command.sdist import sdist as _sdist
28 class sdist(_sdist): class
65 cmdclass={'install': install, 'sdist': sdist},
/external/python/setuptools/docs/deprecated/distutils/
Dsourcedist.rst9 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command
12 python setup.py sdist
14 (assuming you haven't specified any :command:`sdist` options in the setup script
15 or config file), :command:`sdist` creates the archive of the default format for
22 python setup.py sdist --formats=gztar,zip
71 python setup.py sdist --owner=root --group=root
80 generate one), the :command:`sdist` command puts a minimal default set into the
115 :command:`sdist` command processes this template and generates a manifest based
125 :command:`sdist` comparing its modification time to the one of
133 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`
[all …]
/external/python/cpython3/Doc/distutils/
Dsourcedist.rst9 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command
12 python setup.py sdist
14 (assuming you haven't specified any :command:`sdist` options in the setup script
15 or config file), :command:`sdist` creates the archive of the default format for
22 python setup.py sdist --formats=gztar,zip
74 python setup.py sdist --owner=root --group=root
83 generate one), the :command:`sdist` command puts a minimal default set into the
118 :command:`sdist` command processes this template and generates a manifest based
128 :command:`sdist` comparing its modification time to the one of
136 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`
[all …]
/external/python/setuptools/docs/userguide/
Dmiscellaneous.rst109 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 by
141 folder, the ``tests`` directory will be present in the ``sdist`` but not in the
142 ``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
/external/python/asn1crypto/dev/
Dbuild.py36 Creates a sdist .tar.gz and a bdist_wheel --univeral .whl
54 sdist = '%s-%s.tar.gz' % pkg_name_info
56 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'])
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/artifacts/
Dbuild_artifact_python.sh81 ${SETARCH_CMD} "${PYTHON}" setup.py sdist
121 ${SETARCH_CMD} "${PYTHON}" tools/distrib/python/grpcio_tools/setup.py sdist
157 # Note(lidiz) setuptools's "sdist" command creates a source tarball, which
164 sdist bdist_wheel
169 preprocess build_package_protos sdist bdist_wheel
174 preprocess build_package_protos sdist bdist_wheel
179 preprocess build_package_protos sdist bdist_wheel
184 preprocess sdist bdist_wheel
189 sdist bdist_wheel
198 sdist bdist_wheel
/external/python/cpython2/Doc/distutils/
Dsourcedist.rst7 As shown in section :ref:`distutils-simple-example`, you use the :command:`sdist` command
10 python setup.py sdist
12 (assuming you haven't specified any :command:`sdist` options in the setup script
13 or config file), :command:`sdist` creates the archive of the default format for
20 python setup.py sdist --formats=gztar,zip
62 python setup.py sdist --owner=root --group=root
71 generate one), the :command:`sdist` command puts a minimal default set into the
105 :command:`sdist` command processes this template and generates a manifest based
115 :command:`sdist` comparing its modification time to the one of
123 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`
[all …]
/external/python/typing/.github/workflows/
Dpackage.yml42 sdist:
43 name: Test sdist install
61 - name: Build and install sdist
66 echo "::notice::Installing sdist: $path_to_file"
/external/python/setuptools/setuptools/tests/integration/
Dtest_pip_install_sdist.py78 # 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}")
/external/python/cpython2/Lib/distutils/tests/
Dtest_sdist.py1 """Tests for distutils.command.sdist."""
26 from distutils.command.sdist import sdist, show_formats
88 cmd = sdist(dist)
95 # file, then launches sdist to check they get pruned on all systems
111 # now building a sdist
137 # now building a sdist
171 # create the sdist command with unicode parameters
174 # create the sdist as gztar and run the command
327 # now building a sdist
347 # building a sdist again
/external/grpc-grpc/tools/run_tests/artifacts/
Dbuild_artifact_python.sh31 ${SETARCH_CMD} "${PYTHON}" setup.py sdist
69 ${SETARCH_CMD} "${PYTHON}" tools/distrib/python/grpcio_tools/setup.py sdist
103 ${SETARCH_CMD} "${PYTHON}" src/python/grpcio_testing/setup.py sdist
108 preprocess build_package_protos sdist
113 preprocess build_package_protos sdist
/external/capstone/bindings/python/
DMakefile4 .PHONY: gen_const install install3 install_cython sdist sdist3 bdist bdist3 clean check
43 sdist: target
45 $(PYTHON2) setup.py sdist register upload
50 $(PYTHON3) setup.py sdist register upload
/external/python/httplib2/script/
Dtest27 # TODO: sdist bdist_wheel
29 python setup.py sdist
56 # TODO: sdist bdist_wheel
58 ./venv-36/bin/python setup.py sdist
/external/python/pybind11/tests/extra_python_package/
Dtest_files.py108 "sdist",
117 (sdist,) = tmpdir.visit("*.tar")
119 with tarfile.open(str(sdist)) as tar:
163 "sdist",
172 (sdist,) = tmpdir.visit("*.tar")
174 with tarfile.open(str(sdist)) as tar:
/external/python/cpython3/Lib/distutils/tests/
Dtest_sdist.py1 """Tests for distutils.command.sdist."""
25 from distutils.command.sdist import sdist, show_formats
87 cmd = sdist(dist)
94 # file, then launches sdist to check they get pruned on all systems
110 # now building a sdist
142 # now building a sdist
448 # now building a sdist
468 # building a sdist again
/external/python/setuptools/setuptools/_distutils/tests/
Dtest_sdist.py1 """Tests for distutils.command.sdist."""
20 from distutils.command.sdist import sdist, show_formats
82 cmd = sdist(dist)
89 # file, then launches sdist to check they get pruned on all systems
105 # now building a sdist
137 # now building a sdist
444 # now building a sdist
464 # building a sdist again
/external/python/setuptools/
Dsetup.cfg108 sdist = setuptools.command.sdist:sdist
148 [sdist]
/external/python/asn1crypto/
Dsetup.py40 # This allows us to send the LICENSE and docs when creating a sdist. Wheels
42 # to be included, the command must be "python setup.py sdist".
44 if sys.argv[1:] == ['sdist'] or sorted(sys.argv[1:]) == ['-q', 'sdist']:
/external/python/asn1crypto/tests/
Dsetup.py41 # This allows us to send the LICENSE when creating a sdist. Wheels
43 # to be included, the command must be "python setup.py sdist".
44 if sys.argv[1:] == ['sdist'] or sorted(sys.argv[1:]) == ['-q', 'sdist']:
/external/python/setuptools/setuptools.egg-info/
Dentry_points.txt18 sdist = setuptools.command.sdist:sdist

12345678