/external/python/setuptools/setuptools/tests/ |
D | test_virtualenv.py | 69 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'),
|
D | test_sdist.py | 18 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)
|
D | test_easy_install.py | 160 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/ |
D | sdist.py | 2 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)
|
D | py36compat.py | 4 from distutils.command import sdist 133 if hasattr(sdist.sdist, '_add_defaults_standards'):
|
D | egg_info.py | 23 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/ |
D | build_artifact_python.sh | 31 ${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/ |
D | setup.cfg | 12 release = clean_egg_info sdist bdist_wheel 13 source = register sdist binary 19 [sdist]
|
/external/python/cpython3/Doc/distutils/ |
D | sourcedist.rst | 7 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/ |
D | sourcedist.rst | 7 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/ |
D | Makefile | 1 .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
|
D | setup.py | 13 from distutils.command.sdist import sdist 148 class custom_sdist(sdist): 152 return sdist.run(self)
|
/external/python/funcsigs/ |
D | Makefile | 8 sdist: target 9 python setup.py sdist 14 python setup.py sdist upload
|
/external/fonttools/ |
D | tox.ini | 63 # build sdist 64 python setup.py sdist --dist-dir {toxinidir}/dist 65 # build wheel from sdist
|
/external/python/setuptools/setuptools.egg-info/ |
D | entry_points.txt | 24 sdist = setuptools.command.sdist:sdist
|
/external/scapy/ |
D | setup.py | 11 from distutils.command.sdist import sdist
|
/external/python/httplib2/script/ |
D | test | 29 python setup.py sdist 58 ./venv-36/bin/python setup.py sdist
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/ |
D | setup.py | 417 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/ |
D | setup.py | 423 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/ |
D | setup.py | 416 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/ |
D | setup.py | 418 from distutils.command import sdist 419 sdist.sdist.get_file_list = sdist.sdist.read_manifest
|
/external/yapf/ |
D | HACKING.rst | 20 * Build source distribution: python setup.py sdist 24 * Build release: python setup.py sdist bdist_wheel
|
/external/python/google-api-python-client/ |
D | Makefile | 34 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/ |
D | bdist_rpm.py | 291 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/ |
D | bdist_rpm.py | 305 sdist = self.reinitialize_command('sdist') 307 sdist.formats = ['bztar'] 309 sdist.formats = ['gztar'] 313 source = sdist.get_archive_files()[0]
|