/external/python/pycparser/ |
D | setup.py | 5 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/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)
|
/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'):
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/artifacts/ |
D | build_artifact_python.sh | 39 ${SETARCH_CMD} "${PYTHON}" setup.py sdist 78 ${SETARCH_CMD} "${PYTHON}" tools/distrib/python/grpcio_tools/setup.py sdist 115 sdist 120 preprocess build_package_protos sdist 125 preprocess build_package_protos sdist 130 preprocess build_package_protos sdist 135 preprocess sdist
|
/external/python/pybind11/ |
D | setup.py | 15 import setuptools.command.sdist 65 class SDist(setuptools.command.sdist.sdist): 67 setuptools.command.sdist.sdist.make_release_tree(self, base_dir, files)
|
/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/funcsigs/ |
D | Makefile | 8 sdist: target 9 python setup.py sdist 14 python setup.py sdist upload
|
/external/tensorflow/tensorflow/tools/dockerfiles/tests/ |
D | build-mkl-horovod.sh | 43 python setup.py sdist 44 pip --no-cache-dir install --upgrade sdist/horovod*.tar.gz && \ 45 rm -rf sdist && \
|
/external/capstone/bindings/python/ |
D | Makefile | 4 .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
|
D | setup.py | 13 from distutils.command.sdist import sdist 154 class custom_sdist(sdist): 158 return sdist.run(self)
|
/external/python/cpython3/Doc/distutils/ |
D | sourcedist.rst | 9 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/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/python/asn1crypto/dev/ |
D | build.py | 54 sdist = '%s-%s.tar.gz' % pkg_name_info 57 print(' - created %s' % sdist) 58 _list_tgz(os.path.join(package_root, 'dist', sdist))
|
/external/python/pybind11/tests/extra_python_package/ |
D | test_files.py | 117 (sdist,) = tmpdir.visit("*.tar") 119 with tarfile.open(str(sdist)) as tar: 172 (sdist,) = tmpdir.visit("*.tar") 174 with tarfile.open(str(sdist)) as tar:
|
/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/python/setuptools/setuptools.egg-info/ |
D | entry_points.txt | 24 sdist = setuptools.command.sdist:sdist
|
/external/fonttools/ |
D | tox.ini | 82 # build sdist 83 python setup.py sdist --dist-dir {toxinidir}/dist 84 # build wheel from sdist
|
/external/bcc/src/python/ |
D | CMakeLists.txt | 33 COMMAND ${PY_CMD} setup.py sdist 36 COMMENT "Building sdist for ${PY_CMD}"
|
/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/protobuf/python/ |
D | release.sh | 83 python setup.py sdist upload -r https://test.pypi.org/legacy/ 106 python setup.py clean build sdist upload
|