Home
last modified time | relevance | path

Searched refs:sdist (Results 1 – 25 of 81) sorted by relevance

1234

/external/python/setuptools/setuptools/tests/
Dtest_virtualenv.py69 sdist = glob.glob(os.path.join(dist_dir, '*.zip'))[0]
74 virtualenv.run('pip install --no-cache-dir --upgrade ' + sdist)
86 def sdist(distname, version): function
93 sdist('foobar', '2.4'),
94 sdist('bits', '4.2'),
95 sdist('bobs', '6.0'),
96 sdist('pieces', '0.6'),
Dtest_sdist.py18 from setuptools.command.sdist import sdist
126 cmd = sdist(dist)
152 cmd = sdist(dist)
274 cmd = sdist(dist)
307 cmd = sdist(dist)
339 cmd = sdist(dist)
373 cmd = sdist(dist)
Dtest_easy_install.py160 sdist = tmpdir / sdist_name
163 sdist_zip = zipfile.ZipFile(str(sdist), 'w')
167 return str(sdist)
209 sdist = str(tmpdir / sdist_name)
210 make_sdist(sdist, files)
211 return sdist
/external/python/setuptools/setuptools/command/
Dsdist.py2 import distutils.command.sdist as orig
24 class sdist(sdist_add_defaults, orig.sdist): class
63 orig.sdist.initialize_options(self)
78 orig.sdist.make_distribution(self)
107 orig.sdist.read_template(self)
158 orig.sdist.make_release_tree(self, base_dir, files)
Dpy36compat.py4 from distutils.command import sdist
133 if hasattr(sdist.sdist, '_add_defaults_standards'):
Degg_info.py23 from setuptools.command.sdist import sdist
24 from setuptools.command.sdist import walk_revctrl
508 class manifest_maker(sdist):
550 sdist.warn(self, msg)
560 sdist.add_defaults(self)
/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/python/setuptools/
Dsetup.cfg12 release = clean_egg_info sdist bdist_wheel
13 source = register sdist binary
19 [sdist]
/external/python/cpython3/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
69 python setup.py sdist --owner=root --group=root
78 generate one), the :command:`sdist` command puts a minimal default set into the
113 :command:`sdist` command processes this template and generates a manifest based
123 :command:`sdist` comparing its modification time to the one of
131 :command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`
[all …]
/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/capstone/bindings/python/
DMakefile1 .PHONY: gen_const install install3 install_cython sdist sdist3 bdist bdist3 clean check
40 sdist: target
42 python setup.py sdist register upload
47 python3 setup.py sdist register upload
Dsetup.py13 from distutils.command.sdist import sdist
148 class custom_sdist(sdist):
152 return sdist.run(self)
/external/python/funcsigs/
DMakefile8 sdist: target
9 python setup.py sdist
14 python setup.py sdist upload
/external/fonttools/
Dtox.ini63 # build sdist
64 python setup.py sdist --dist-dir {toxinidir}/dist
65 # build wheel from sdist
/external/python/setuptools/setuptools.egg-info/
Dentry_points.txt24 sdist = setuptools.command.sdist:sdist
/external/scapy/
Dsetup.py11 from distutils.command.sdist import sdist
/external/python/httplib2/script/
Dtest29 python setup.py sdist
58 ./venv-36/bin/python setup.py sdist
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Dsetup.py417 from distutils.command import sdist
418 sdist.sdist.get_file_list = sdist.sdist.read_manifest
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Dsetup.py423 from distutils.command import sdist
424 sdist.sdist.get_file_list = sdist.sdist.read_manifest
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Dsetup.py416 from distutils.command import sdist
417 sdist.sdist.get_file_list = sdist.sdist.read_manifest
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dsetup.py418 from distutils.command import sdist
419 sdist.sdist.get_file_list = sdist.sdist.read_manifest
/external/yapf/
DHACKING.rst20 * Build source distribution: python setup.py sdist
24 * Build release: python setup.py sdist bdist_wheel
/external/python/google-api-python-client/
DMakefile34 cd snapshot; python setup.py sdist --formats=gztar,zip bdist_wheel --universal
45 cd snapshot; python setup.py sdist --formats=gztar,zip bdist_wheel --universal
/external/python/cpython3/Lib/distutils/command/
Dbdist_rpm.py291 sdist = self.reinitialize_command('sdist')
293 sdist.formats = ['bztar']
295 sdist.formats = ['gztar']
299 source = sdist.get_archive_files()[0]
/external/python/cpython2/Lib/distutils/command/
Dbdist_rpm.py305 sdist = self.reinitialize_command('sdist')
307 sdist.formats = ['bztar']
309 sdist.formats = ['gztar']
313 source = sdist.get_archive_files()[0]

1234