py2docfx 0.1.15rc2025477__py3-none-any.whl → 0.1.16.dev2051338__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py2docfx/docfx_yaml/process_doctree.py +21 -34
- py2docfx/docfx_yaml/tests/test_method_arguments.py +1 -7
- py2docfx/docfx_yaml/tests/test_process_doctree.py +120 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_core_metadata.py +21 -5
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py +13 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/ccompiler.py +5 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/build.py +1 -6
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/build_clib.py +1 -9
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/build_ext.py +1 -8
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/check.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/config.py +0 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/install.py +8 -17
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/base.py +8 -5
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/msvc.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/unix.py +15 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/dist.py +2 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/sysconfig.py +0 -10
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/tests/test_build_ext.py +60 -5
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/unixccompiler.py +6 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/util.py +7 -6
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_normalization.py +29 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/__init__.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +613 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +2 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +25 -594
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/cli/__init__.py +6 -6
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/cli/convert.py +282 -223
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +22 -9
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/metadata.py +16 -13
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/util.py +0 -9
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_vendor/wheel/wheelfile.py +40 -9
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/bdist_wheel.py +6 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py +49 -11
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +31 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +222 -129
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py +30 -3
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/dist.py +168 -51
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/msvc.py +12 -3
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +246 -13
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/config/test_setupcfg.py +42 -29
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_bdist_wheel.py +93 -8
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_build_meta.py +17 -4
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_core_metadata.py +45 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_egg_info.py +24 -4
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_sdist.py +13 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/any_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/api_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/compiler/plugin_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor_database.py +22 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor_pb2.py +82 -35
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/duration_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/empty_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/field_mask_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/builder.py +4 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/containers.py +13 -0
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/decoder.py +62 -115
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/python_edition_defaults.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/python_message.py +15 -18
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/testing_refleaks.py +4 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/type_checkers.py +5 -0
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/well_known_types.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/json_format.py +25 -9
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/message.py +26 -0
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/message_factory.py +0 -63
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/proto.py +38 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/proto_text.py +129 -0
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/reflection.py +0 -49
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/runtime_version.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/source_context_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/struct_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/symbol_database.py +0 -18
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/text_format.py +8 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/timestamp_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/type_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/unknown_fields.py +3 -4
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/wrappers_pb2.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/msal/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/msal/application.py +51 -17
- py2docfx/venv/venv1/Lib/site-packages/msal/broker.py +18 -4
- py2docfx/venv/venv1/Lib/site-packages/msal/cloudshell.py +5 -1
- py2docfx/venv/venv1/Lib/site-packages/msal/managed_identity.py +5 -4
- py2docfx/venv/venv1/Lib/site-packages/msal/sku.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/msal/token_cache.py +31 -10
- py2docfx/venv/venv1/Lib/site-packages/msal_extensions/__init__.py +2 -3
- py2docfx/venv/venv1/Lib/site-packages/msal_extensions/cache_lock.py +4 -1
- py2docfx/venv/venv1/Lib/site-packages/msal_extensions/filelock.py +62 -0
- py2docfx/venv/venv1/Lib/site-packages/msal_extensions/libsecret.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/msal_extensions/token_cache.py +7 -1
- py2docfx/venv/venv1/Lib/site-packages/pyasn1_modules/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_core_metadata.py +21 -5
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/_msvccompiler.py +13 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/ccompiler.py +5 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/build.py +1 -6
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/build_clib.py +1 -9
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/build_ext.py +1 -8
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/check.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/config.py +0 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/install.py +8 -17
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/base.py +8 -5
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/msvc.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/unix.py +15 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/dist.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/sysconfig.py +0 -10
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/tests/test_build_ext.py +60 -5
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/unixccompiler.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/util.py +7 -6
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_normalization.py +29 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +613 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +25 -594
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/cli/__init__.py +6 -6
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/cli/convert.py +282 -223
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +22 -9
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/metadata.py +16 -13
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/util.py +0 -9
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_vendor/wheel/wheelfile.py +40 -9
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/bdist_wheel.py +6 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py +49 -11
- py2docfx/venv/venv1/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +31 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +222 -129
- py2docfx/venv/venv1/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py +30 -3
- py2docfx/venv/venv1/Lib/site-packages/setuptools/dist.py +168 -51
- py2docfx/venv/venv1/Lib/site-packages/setuptools/msvc.py +12 -3
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +246 -13
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/config/test_setupcfg.py +42 -29
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_bdist_wheel.py +93 -8
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_build_meta.py +17 -4
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_core_metadata.py +45 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_egg_info.py +24 -4
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_sdist.py +13 -1
- py2docfx/venv/venv1/Lib/site-packages/typing_extensions.py +999 -74
- {py2docfx-0.1.15rc2025477.dist-info → py2docfx-0.1.16.dev2051338.dist-info}/METADATA +1 -1
- {py2docfx-0.1.15rc2025477.dist-info → py2docfx-0.1.16.dev2051338.dist-info}/RECORD +141 -596
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/__init__.py +0 -82
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/ado_consts.py +0 -283
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/adodbapi.py +0 -1153
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/apibase.py +0 -723
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/examples/db_print.py +0 -72
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/examples/db_table_names.py +0 -21
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/examples/xls_read.py +0 -41
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/examples/xls_write.py +0 -41
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/is64bit.py +0 -34
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/process_connect_string.py +0 -137
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/schema_table.py +0 -16
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/setup.py +0 -68
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/adodbapitest.py +0 -1547
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/adodbapitestconfig.py +0 -184
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/dbapi20.py +0 -879
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/is64bit.py +0 -34
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/setuptestframework.py +0 -98
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/test_adodbapi_dbapi20.py +0 -195
- py2docfx/venv/venv1/Lib/site-packages/adodbapi/test/tryconnection.py +0 -30
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/_parameterized.py +0 -420
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/service.py +0 -213
- py2docfx/venv/venv1/Lib/site-packages/isapi/__init__.py +0 -39
- py2docfx/venv/venv1/Lib/site-packages/isapi/install.py +0 -809
- py2docfx/venv/venv1/Lib/site-packages/isapi/isapicon.py +0 -121
- py2docfx/venv/venv1/Lib/site-packages/isapi/samples/advanced.py +0 -218
- py2docfx/venv/venv1/Lib/site-packages/isapi/samples/redirector.py +0 -116
- py2docfx/venv/venv1/Lib/site-packages/isapi/samples/redirector_asynch.py +0 -85
- py2docfx/venv/venv1/Lib/site-packages/isapi/samples/redirector_with_filter.py +0 -162
- py2docfx/venv/venv1/Lib/site-packages/isapi/samples/test.py +0 -195
- py2docfx/venv/venv1/Lib/site-packages/isapi/simple.py +0 -73
- py2docfx/venv/venv1/Lib/site-packages/isapi/test/extension_simple.py +0 -114
- py2docfx/venv/venv1/Lib/site-packages/isapi/threaded_extension.py +0 -191
- py2docfx/venv/venv1/Lib/site-packages/portalocker/__about__.py +0 -6
- py2docfx/venv/venv1/Lib/site-packages/portalocker/__init__.py +0 -79
- py2docfx/venv/venv1/Lib/site-packages/portalocker/__main__.py +0 -122
- py2docfx/venv/venv1/Lib/site-packages/portalocker/constants.py +0 -59
- py2docfx/venv/venv1/Lib/site-packages/portalocker/exceptions.py +0 -27
- py2docfx/venv/venv1/Lib/site-packages/portalocker/portalocker.py +0 -154
- py2docfx/venv/venv1/Lib/site-packages/portalocker/redis.py +0 -236
- py2docfx/venv/venv1/Lib/site-packages/portalocker/utils.py +0 -569
- py2docfx/venv/venv1/Lib/site-packages/pythoncom.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/app/basictimerapp.py +0 -258
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/app/customprint.py +0 -183
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/app/demoutils.py +0 -63
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/app/dlgappdemo.py +0 -51
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/app/dojobapp.py +0 -71
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/app/helloapp.py +0 -53
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/cmdserver.py +0 -113
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/createwin.py +0 -114
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/demoutils.py +0 -65
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/dibdemo.py +0 -73
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/dlgtest.py +0 -145
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/dyndlg.py +0 -104
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/fontdemo.py +0 -85
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/guidemo.py +0 -53
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/hiertest.py +0 -138
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/menutest.py +0 -13
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/objdoc.py +0 -57
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/ocx/demoutils.py +0 -63
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/ocx/flash.py +0 -95
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/ocx/msoffice.py +0 -159
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/ocx/ocxserialtest.py +0 -132
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/ocx/ocxtest.py +0 -243
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/ocx/webbrowser.py +0 -72
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/openGLDemo.py +0 -415
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/progressbar.py +0 -105
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/sliderdemo.py +0 -76
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/splittst.py +0 -79
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/threadedgui.py +0 -189
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/Demos/toolbar.py +0 -105
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/__init__.py +0 -3
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/debugger/__init__.py +0 -133
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/debugger/configui.py +0 -34
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/debugger/dbgcon.py +0 -31
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/debugger/dbgpyapp.py +0 -48
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/debugger/debugger.py +0 -1097
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/debugger/fail.py +0 -54
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/dialogs/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/dialogs/ideoptions.py +0 -136
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/dialogs/list.py +0 -146
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/dialogs/login.py +0 -155
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/dialogs/status.py +0 -242
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/docking/DockingBar.py +0 -676
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/docking/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/app.py +0 -411
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/bitmap.py +0 -168
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/cmdline.py +0 -54
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/dbgcommands.py +0 -188
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/dlgappcore.py +0 -76
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/ModuleBrowser.py +0 -235
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/__init__.py +0 -105
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/color/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/color/coloreditor.py +0 -646
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/configui.py +0 -299
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/document.py +0 -379
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/editor.py +0 -511
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/frame.py +0 -74
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/template.py +0 -59
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/editor/vss.py +0 -104
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/help.py +0 -173
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/interact.py +0 -995
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/intpyapp.py +0 -552
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/intpydde.py +0 -65
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/scriptutils.py +0 -684
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/sgrepmdi.py +0 -749
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/startup.py +0 -70
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/stdin.py +0 -172
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/toolmenu.py +0 -279
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/window.py +0 -14
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/framework/winout.py +0 -589
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/AutoExpand.py +0 -95
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/AutoIndent.py +0 -536
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/CallTips.py +0 -216
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/FormatParagraph.py +0 -166
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/IdleHistory.py +0 -87
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/PyParse.py +0 -585
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/idle/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/activex.py +0 -79
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/afxres.py +0 -501
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/dialog.py +0 -277
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/docview.py +0 -151
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/object.py +0 -66
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/thread.py +0 -25
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/mfc/window.py +0 -50
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/IDLEenvironment.py +0 -593
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/bindings.py +0 -180
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/config.py +0 -363
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/configui.py +0 -291
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/control.py +0 -565
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/document.py +0 -312
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/find.py +0 -511
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/formatter.py +0 -704
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/keycodes.py +0 -190
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/scintillacon.py +0 -3083
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/scintilla/view.py +0 -841
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/TraceCollector.py +0 -79
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/browseProjects.py +0 -323
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/browser.py +0 -494
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/hierlist.py +0 -353
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/regedit.py +0 -382
- py2docfx/venv/venv1/Lib/site-packages/pythonwin/pywin/tools/regpy.py +0 -80
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/BackupRead_BackupWrite.py +0 -119
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/BackupSeek_streamheaders.py +0 -137
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/CopyFileEx.py +0 -57
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/CreateFileTransacted_MiniVersion.py +0 -122
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/EvtFormatMessage.py +0 -83
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/EvtSubscribe_pull.py +0 -28
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/EvtSubscribe_push.py +0 -32
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/FileSecurityTest.py +0 -137
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/GetSaveFileName.py +0 -43
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/NetValidatePasswordPolicy.py +0 -127
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/OpenEncryptedFileRaw.py +0 -66
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/RegCreateKeyTransacted.py +0 -60
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/RegRestoreKey.py +0 -71
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/SystemParametersInfo.py +0 -210
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/c_extension/setup.py +0 -26
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/dde/ddeclient.py +0 -18
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/dde/ddeserver.py +0 -42
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/desktopmanager.py +0 -246
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/eventLogDemo.py +0 -143
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/getfilever.py +0 -33
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/mmapfile_demo.py +0 -101
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/pipes/cat.py +0 -17
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/pipes/runproc.py +0 -114
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/print_desktop.py +0 -113
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/rastest.py +0 -166
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/GetTokenInformation.py +0 -110
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/account_rights.py +0 -49
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/explicit_entries.py +0 -170
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/get_policy_info.py +0 -39
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/list_rights.py +0 -35
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/localized_names.py +0 -70
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/lsaregevent.py +0 -14
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/lsastore.py +0 -12
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/query_information.py +0 -25
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/regsave_sa.py +0 -61
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/regsecurity.py +0 -36
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/sa_inherit.py +0 -8
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/security_enums.py +0 -336
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/set_file_audit.py +0 -106
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/set_file_owner.py +0 -73
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/set_policy_info.py +0 -25
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/setkernelobjectsecurity.py +0 -134
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/setnamedsecurityinfo.py +0 -131
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/setsecurityinfo.py +0 -131
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/setuserobjectsecurity.py +0 -102
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/sspi/fetch_url.py +0 -158
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/sspi/simple_auth.py +0 -72
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/sspi/socket_server.py +0 -199
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/security/sspi/validate_password.py +0 -41
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/service/nativePipeTestService.py +0 -63
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/service/pipeTestService.py +0 -185
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/service/pipeTestServiceClient.py +0 -158
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/service/serviceEvents.py +0 -98
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/timer_demo.py +0 -72
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32clipboardDemo.py +0 -155
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32clipboard_bitmapdemo.py +0 -117
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32comport_demo.py +0 -174
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32console_demo.py +0 -132
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32cred_demo.py +0 -82
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32fileDemo.py +0 -41
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32gui_demo.py +0 -177
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32gui_devicenotify.py +0 -106
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32gui_dialog.py +0 -445
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32gui_menu.py +0 -464
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32gui_taskbar.py +0 -136
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32netdemo.py +0 -272
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32rcparser_demo.py +0 -86
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32servicedemo.py +0 -23
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32ts_logoff_disconnected.py +0 -25
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32wnet/testwnet.py +0 -123
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/win32wnet/winnetwk.py +0 -100
- py2docfx/venv/venv1/Lib/site-packages/win32/Demos/winprocess.py +0 -230
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/_win32verstamp_pywin32ctypes.py +0 -164
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/afxres.py +0 -8
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/commctrl.py +0 -1551
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/mmsystem.py +0 -956
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/netbios.py +0 -293
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/ntsecuritycon.py +0 -731
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/pywin32_bootstrap.py +0 -21
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/pywin32_testutil.py +0 -291
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/pywintypes.py +0 -124
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/rasutil.py +0 -40
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/regcheck.py +0 -161
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/regutil.py +0 -395
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/sspi.py +0 -413
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/sspicon.py +0 -477
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win2kras.py +0 -14
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32con.py +0 -5064
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32cryptcon.py +0 -1922
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32evtlogutil.py +0 -225
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32gui_struct.py +0 -957
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32inetcon.py +0 -1086
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32netcon.py +0 -627
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32pdhquery.py +0 -570
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32pdhutil.py +0 -212
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32rcparser.py +0 -674
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32serviceutil.py +0 -1073
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32timezone.py +0 -1201
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32traceutil.py +0 -59
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/win32verstamp.py +0 -235
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/winerror.py +0 -7362
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/winioctlcon.py +0 -1079
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/winnt.py +0 -1347
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/winperf.py +0 -236
- py2docfx/venv/venv1/Lib/site-packages/win32/lib/winxptheme.py +0 -8
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/ControlService.py +0 -594
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/VersionStamp/BrandProject.py +0 -97
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/VersionStamp/bulkstamp.py +0 -156
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/VersionStamp/vssutil.py +0 -201
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/backupEventLog.py +0 -46
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/h2py.py +0 -194
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/killProcName.py +0 -62
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/pywin32_postinstall.py +0 -733
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/pywin32_testall.py +0 -120
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/rasutil.py +0 -98
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/regsetup.py +0 -607
- py2docfx/venv/venv1/Lib/site-packages/win32/scripts/setup_d.py +0 -111
- py2docfx/venv/venv1/Lib/site-packages/win32/test/handles.py +0 -175
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_clipboard.py +0 -137
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_exceptions.py +0 -213
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_odbc.py +0 -264
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_pywintypes.py +0 -111
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_security.py +0 -166
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_sspi.py +0 -229
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32api.py +0 -273
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32clipboard.py +0 -59
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32cred.py +0 -91
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32crypt.py +0 -144
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32event.py +0 -119
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32file.py +0 -1096
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32gui.py +0 -227
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32guistruct.py +0 -333
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32inet.py +0 -108
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32net.py +0 -23
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32pipe.py +0 -148
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32print.py +0 -24
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32profile.py +0 -19
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32rcparser.py +0 -70
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32timezone.py +0 -16
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32trace.py +0 -366
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32ts.py +0 -19
- py2docfx/venv/venv1/Lib/site-packages/win32/test/test_win32wnet.py +0 -174
- py2docfx/venv/venv1/Lib/site-packages/win32/test/testall.py +0 -223
- py2docfx/venv/venv1/Lib/site-packages/win32/winxpgui.py +0 -13
- py2docfx/venv/venv1/Lib/site-packages/win32com/__init__.py +0 -134
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/CLSIDToClass.py +0 -60
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/__init__.py +0 -717
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/build.py +0 -771
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/combrowse.py +0 -604
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/connect.py +0 -48
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/dynamic.py +0 -699
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/gencache.py +0 -825
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/genpy.py +0 -1350
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/makepy.py +0 -453
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/selecttlb.py +0 -182
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/tlbrowse.py +0 -277
- py2docfx/venv/venv1/Lib/site-packages/win32com/client/util.py +0 -103
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/connect.py +0 -96
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/dump_clipboard.py +0 -74
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/eventsApartmentThreaded.py +0 -98
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/eventsFreeThreaded.py +0 -92
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/excelAddin.py +0 -169
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/excelRTDServer.py +0 -434
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/iebutton.py +0 -214
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/ietoolbar.py +0 -368
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/outlookAddin.py +0 -135
- py2docfx/venv/venv1/Lib/site-packages/win32com/demos/trybag.py +0 -78
- py2docfx/venv/venv1/Lib/site-packages/win32com/makegw/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32com/makegw/makegw.py +0 -618
- py2docfx/venv/venv1/Lib/site-packages/win32com/makegw/makegwenum.py +0 -331
- py2docfx/venv/venv1/Lib/site-packages/win32com/makegw/makegwparse.py +0 -1017
- py2docfx/venv/venv1/Lib/site-packages/win32com/olectl.py +0 -70
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/connect.py +0 -85
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/dispatcher.py +0 -239
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/exception.py +0 -99
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/factory.py +0 -26
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/localserver.py +0 -53
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/policy.py +0 -803
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/register.py +0 -677
- py2docfx/venv/venv1/Lib/site-packages/win32com/server/util.py +0 -229
- py2docfx/venv/venv1/Lib/site-packages/win32com/servers/PythonTools.py +0 -47
- py2docfx/venv/venv1/Lib/site-packages/win32com/servers/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/win32com/servers/dictionary.py +0 -133
- py2docfx/venv/venv1/Lib/site-packages/win32com/servers/interp.py +0 -59
- py2docfx/venv/venv1/Lib/site-packages/win32com/servers/perfmon.py +0 -36
- py2docfx/venv/venv1/Lib/site-packages/win32com/servers/test_pycomtest.py +0 -181
- py2docfx/venv/venv1/Lib/site-packages/win32com/storagecon.py +0 -142
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/GenTestScripts.py +0 -95
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/daodump.py +0 -88
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/errorSemantics.py +0 -243
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/pippo_server.py +0 -96
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/policySemantics.py +0 -115
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testADOEvents.py +0 -100
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testAXScript.py +0 -44
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testAccess.py +0 -185
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testArrays.py +0 -99
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testClipboard.py +0 -169
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testCollections.py +0 -159
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testConversionErrors.py +0 -35
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testDCOM.py +0 -50
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testDates.py +0 -74
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testDictionary.py +0 -101
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testDynamic.py +0 -83
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testExchange.py +0 -121
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testExplorer.py +0 -139
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testGIT.py +0 -142
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testGatewayAddresses.py +0 -149
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testIterators.py +0 -140
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testMSOffice.py +0 -184
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testMSOfficeEvents.py +0 -138
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testMarshal.py +0 -160
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testPersist.py +0 -227
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testPippo.py +0 -80
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testPyComTest.py +0 -918
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testROT.py +0 -29
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testServers.py +0 -51
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testShell.py +0 -272
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testStorage.py +0 -88
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testStreams.py +0 -147
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testWMI.py +0 -18
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testall.py +0 -320
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testmakepy.py +0 -54
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testvb.py +0 -583
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testvbscript_regexp.py +0 -40
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/testxslt.py +0 -34
- py2docfx/venv/venv1/Lib/site-packages/win32com/test/util.py +0 -262
- py2docfx/venv/venv1/Lib/site-packages/win32com/universal.py +0 -224
- py2docfx/venv/venv1/Lib/site-packages/win32com/util.py +0 -35
- py2docfx/venv/venv1/Lib/site-packages/win32comext/adsi/__init__.py +0 -113
- py2docfx/venv/venv1/Lib/site-packages/win32comext/adsi/adsicon.py +0 -340
- py2docfx/venv/venv1/Lib/site-packages/win32comext/adsi/demos/objectPicker.py +0 -68
- py2docfx/venv/venv1/Lib/site-packages/win32comext/adsi/demos/scp.py +0 -565
- py2docfx/venv/venv1/Lib/site-packages/win32comext/adsi/demos/search.py +0 -151
- py2docfx/venv/venv1/Lib/site-packages/win32comext/adsi/demos/test.py +0 -274
- py2docfx/venv/venv1/Lib/site-packages/win32comext/authorization/__init__.py +0 -6
- py2docfx/venv/venv1/Lib/site-packages/win32comext/authorization/demos/EditSecurity.py +0 -229
- py2docfx/venv/venv1/Lib/site-packages/win32comext/authorization/demos/EditServiceSecurity.py +0 -219
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axcontrol/__init__.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/__init__.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/adb.py +0 -467
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/codecontainer.py +0 -279
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/contexts.py +0 -58
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/debugger.py +0 -238
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/documents.py +0 -135
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/dump.py +0 -57
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/expressions.py +0 -212
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/gateways.py +0 -583
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/stackframe.py +0 -178
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axdebug/util.py +0 -98
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/__init__.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/asputil.py +0 -13
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/debug.py +0 -223
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/error.py +0 -262
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/framework.py +0 -1291
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/pydumper.py +0 -78
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/pyscript.py +0 -438
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/pyscript_rexec.py +0 -54
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/client/scriptdispatch.py +0 -103
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/server/__init__.py +0 -0
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/server/axsite.py +0 -145
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/test/leakTest.py +0 -185
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/test/testHost.py +0 -240
- py2docfx/venv/venv1/Lib/site-packages/win32comext/axscript/test/testHost4Dbg.py +0 -83
- py2docfx/venv/venv1/Lib/site-packages/win32comext/bits/__init__.py +0 -6
- py2docfx/venv/venv1/Lib/site-packages/win32comext/bits/test/show_all_jobs.py +0 -48
- py2docfx/venv/venv1/Lib/site-packages/win32comext/bits/test/test_bits.py +0 -119
- py2docfx/venv/venv1/Lib/site-packages/win32comext/directsound/__init__.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/win32comext/directsound/test/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32comext/directsound/test/ds_record.py +0 -60
- py2docfx/venv/venv1/Lib/site-packages/win32comext/directsound/test/ds_test.py +0 -402
- py2docfx/venv/venv1/Lib/site-packages/win32comext/ifilter/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32comext/ifilter/demo/filterDemo.py +0 -300
- py2docfx/venv/venv1/Lib/site-packages/win32comext/ifilter/ifiltercon.py +0 -110
- py2docfx/venv/venv1/Lib/site-packages/win32comext/internet/__init__.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/win32comext/internet/inetcon.py +0 -261
- py2docfx/venv/venv1/Lib/site-packages/win32comext/mapi/__init__.py +0 -21
- py2docfx/venv/venv1/Lib/site-packages/win32comext/mapi/demos/mapisend.py +0 -98
- py2docfx/venv/venv1/Lib/site-packages/win32comext/mapi/emsabtags.py +0 -875
- py2docfx/venv/venv1/Lib/site-packages/win32comext/mapi/mapitags.py +0 -1023
- py2docfx/venv/venv1/Lib/site-packages/win32comext/mapi/mapiutil.py +0 -211
- py2docfx/venv/venv1/Lib/site-packages/win32comext/propsys/__init__.py +0 -1
- py2docfx/venv/venv1/Lib/site-packages/win32comext/propsys/pscon.py +0 -838
- py2docfx/venv/venv1/Lib/site-packages/win32comext/propsys/test/testpropsys.py +0 -5
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/__init__.py +0 -4
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/IActiveDesktop.py +0 -83
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/IFileOperationProgressSink.py +0 -179
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/IShellLinkDataList.py +0 -67
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/ITransferAdviseSink.py +0 -93
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/IUniformResourceLocator.py +0 -56
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/browse_for_folder.py +0 -45
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/create_link.py +0 -73
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/dump_link.py +0 -58
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/explorer_browser.py +0 -143
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/column_provider.py +0 -125
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/context_menu.py +0 -122
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/copy_hook.py +0 -84
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/empty_volume_cache.py +0 -188
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/folder_view.py +0 -866
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/icon_handler.py +0 -81
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/servers/shell_view.py +0 -971
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/shellexecuteex.py +0 -19
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/viewstate.py +0 -68
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/demos/walk_shell_folders.py +0 -24
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/shellcon.py +0 -1615
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/test/testSHFileOperation.py +0 -75
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/test/testShellFolder.py +0 -21
- py2docfx/venv/venv1/Lib/site-packages/win32comext/shell/test/testShellItem.py +0 -69
- py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/__init__.py +0 -6
- py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_addtask.py +0 -66
- py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_addtask_1.py +0 -68
- py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_addtask_2.py +0 -49
- py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_localsystem.py +0 -3
- py2docfx/venv/venv1/Scripts/pywin32_postinstall.py +0 -733
- py2docfx/venv/venv1/Scripts/pywin32_testall.py +0 -120
- {py2docfx-0.1.15rc2025477.dist-info → py2docfx-0.1.16.dev2051338.dist-info}/WHEEL +0 -0
- {py2docfx-0.1.15rc2025477.dist-info → py2docfx-0.1.16.dev2051338.dist-info}/top_level.txt +0 -0
@@ -1,595 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
""
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
import
|
14
|
-
|
15
|
-
import sysconfig
|
16
|
-
import warnings
|
17
|
-
from email.generator import BytesGenerator, Generator
|
18
|
-
from email.policy import EmailPolicy
|
19
|
-
from glob import iglob
|
20
|
-
from shutil import rmtree
|
21
|
-
from zipfile import ZIP_DEFLATED, ZIP_STORED
|
22
|
-
|
23
|
-
import setuptools
|
24
|
-
from setuptools import Command
|
25
|
-
|
26
|
-
from . import __version__ as wheel_version
|
27
|
-
from .macosx_libfile import calculate_macosx_platform_tag
|
28
|
-
from .metadata import pkginfo_to_metadata
|
29
|
-
from .util import log
|
30
|
-
from .vendored.packaging import tags
|
31
|
-
from .vendored.packaging import version as _packaging_version
|
32
|
-
from .wheelfile import WheelFile
|
33
|
-
|
34
|
-
|
35
|
-
def safe_name(name):
|
36
|
-
"""Convert an arbitrary string to a standard distribution name
|
37
|
-
Any runs of non-alphanumeric/. characters are replaced with a single '-'.
|
38
|
-
"""
|
39
|
-
return re.sub("[^A-Za-z0-9.]+", "-", name)
|
40
|
-
|
41
|
-
|
42
|
-
def safe_version(version):
|
43
|
-
"""
|
44
|
-
Convert an arbitrary string to a standard version string
|
45
|
-
"""
|
1
|
+
from typing import TYPE_CHECKING
|
2
|
+
from warnings import warn
|
3
|
+
|
4
|
+
warn(
|
5
|
+
"The 'wheel' package is no longer the canonical location of the 'bdist_wheel' "
|
6
|
+
"command, and will be removed in a future release. Please update to setuptools "
|
7
|
+
"v70.1 or later which contains an integrated version of this command.",
|
8
|
+
DeprecationWarning,
|
9
|
+
stacklevel=1,
|
10
|
+
)
|
11
|
+
|
12
|
+
if TYPE_CHECKING:
|
13
|
+
from ._bdist_wheel import bdist_wheel as bdist_wheel
|
14
|
+
else:
|
46
15
|
try:
|
47
|
-
#
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
def _is_32bit_interpreter():
|
60
|
-
return struct.calcsize("P") == 4
|
61
|
-
|
62
|
-
|
63
|
-
def python_tag():
|
64
|
-
return f"py{sys.version_info[0]}"
|
65
|
-
|
66
|
-
|
67
|
-
def get_platform(archive_root):
|
68
|
-
"""Return our platform name 'win32', 'linux_x86_64'"""
|
69
|
-
result = sysconfig.get_platform()
|
70
|
-
if result.startswith("macosx") and archive_root is not None:
|
71
|
-
result = calculate_macosx_platform_tag(archive_root, result)
|
72
|
-
elif _is_32bit_interpreter():
|
73
|
-
if result == "linux-x86_64":
|
74
|
-
# pip pull request #3497
|
75
|
-
result = "linux-i686"
|
76
|
-
elif result == "linux-aarch64":
|
77
|
-
# packaging pull request #234
|
78
|
-
# TODO armv8l, packaging pull request #690 => this did not land
|
79
|
-
# in pip/packaging yet
|
80
|
-
result = "linux-armv7l"
|
81
|
-
|
82
|
-
return result.replace("-", "_")
|
83
|
-
|
84
|
-
|
85
|
-
def get_flag(var, fallback, expected=True, warn=True):
|
86
|
-
"""Use a fallback value for determining SOABI flags if the needed config
|
87
|
-
var is unset or unavailable."""
|
88
|
-
val = sysconfig.get_config_var(var)
|
89
|
-
if val is None:
|
90
|
-
if warn:
|
91
|
-
warnings.warn(
|
92
|
-
f"Config variable '{var}' is unset, Python ABI tag may " "be incorrect",
|
93
|
-
RuntimeWarning,
|
94
|
-
stacklevel=2,
|
95
|
-
)
|
96
|
-
return fallback
|
97
|
-
return val == expected
|
98
|
-
|
99
|
-
|
100
|
-
def get_abi_tag():
|
101
|
-
"""Return the ABI tag based on SOABI (if available) or emulate SOABI (PyPy2)."""
|
102
|
-
soabi = sysconfig.get_config_var("SOABI")
|
103
|
-
impl = tags.interpreter_name()
|
104
|
-
if not soabi and impl in ("cp", "pp") and hasattr(sys, "maxunicode"):
|
105
|
-
d = ""
|
106
|
-
m = ""
|
107
|
-
u = ""
|
108
|
-
if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")):
|
109
|
-
d = "d"
|
110
|
-
|
111
|
-
if get_flag(
|
112
|
-
"WITH_PYMALLOC",
|
113
|
-
impl == "cp",
|
114
|
-
warn=(impl == "cp" and sys.version_info < (3, 8)),
|
115
|
-
) and sys.version_info < (3, 8):
|
116
|
-
m = "m"
|
117
|
-
|
118
|
-
abi = f"{impl}{tags.interpreter_version()}{d}{m}{u}"
|
119
|
-
elif soabi and impl == "cp" and soabi.startswith("cpython"):
|
120
|
-
# non-Windows
|
121
|
-
abi = "cp" + soabi.split("-")[1]
|
122
|
-
elif soabi and impl == "cp" and soabi.startswith("cp"):
|
123
|
-
# Windows
|
124
|
-
abi = soabi.split("-")[0]
|
125
|
-
elif soabi and impl == "pp":
|
126
|
-
# we want something like pypy36-pp73
|
127
|
-
abi = "-".join(soabi.split("-")[:2])
|
128
|
-
abi = abi.replace(".", "_").replace("-", "_")
|
129
|
-
elif soabi and impl == "graalpy":
|
130
|
-
abi = "-".join(soabi.split("-")[:3])
|
131
|
-
abi = abi.replace(".", "_").replace("-", "_")
|
132
|
-
elif soabi:
|
133
|
-
abi = soabi.replace(".", "_").replace("-", "_")
|
134
|
-
else:
|
135
|
-
abi = None
|
136
|
-
|
137
|
-
return abi
|
138
|
-
|
139
|
-
|
140
|
-
def safer_name(name):
|
141
|
-
return safe_name(name).replace("-", "_")
|
142
|
-
|
143
|
-
|
144
|
-
def safer_version(version):
|
145
|
-
return safe_version(version).replace("-", "_")
|
146
|
-
|
147
|
-
|
148
|
-
def remove_readonly(func, path, excinfo):
|
149
|
-
remove_readonly_exc(func, path, excinfo[1])
|
150
|
-
|
151
|
-
|
152
|
-
def remove_readonly_exc(func, path, exc):
|
153
|
-
os.chmod(path, stat.S_IWRITE)
|
154
|
-
func(path)
|
155
|
-
|
156
|
-
|
157
|
-
class bdist_wheel(Command):
|
158
|
-
description = "create a wheel distribution"
|
159
|
-
|
160
|
-
supported_compressions = {
|
161
|
-
"stored": ZIP_STORED,
|
162
|
-
"deflated": ZIP_DEFLATED,
|
163
|
-
}
|
164
|
-
|
165
|
-
user_options = [
|
166
|
-
("bdist-dir=", "b", "temporary directory for creating the distribution"),
|
167
|
-
(
|
168
|
-
"plat-name=",
|
169
|
-
"p",
|
170
|
-
"platform name to embed in generated filenames "
|
171
|
-
"(default: %s)" % get_platform(None),
|
172
|
-
),
|
173
|
-
(
|
174
|
-
"keep-temp",
|
175
|
-
"k",
|
176
|
-
"keep the pseudo-installation tree around after "
|
177
|
-
"creating the distribution archive",
|
178
|
-
),
|
179
|
-
("dist-dir=", "d", "directory to put final built distributions in"),
|
180
|
-
("skip-build", None, "skip rebuilding everything (for testing/debugging)"),
|
181
|
-
(
|
182
|
-
"relative",
|
183
|
-
None,
|
184
|
-
"build the archive using relative paths " "(default: false)",
|
185
|
-
),
|
186
|
-
(
|
187
|
-
"owner=",
|
188
|
-
"u",
|
189
|
-
"Owner name used when creating a tar file" " [default: current user]",
|
190
|
-
),
|
191
|
-
(
|
192
|
-
"group=",
|
193
|
-
"g",
|
194
|
-
"Group name used when creating a tar file" " [default: current group]",
|
195
|
-
),
|
196
|
-
("universal", None, "make a universal wheel" " (default: false)"),
|
197
|
-
(
|
198
|
-
"compression=",
|
199
|
-
None,
|
200
|
-
"zipfile compression (one of: {})" " (default: 'deflated')".format(
|
201
|
-
", ".join(supported_compressions)
|
202
|
-
),
|
203
|
-
),
|
204
|
-
(
|
205
|
-
"python-tag=",
|
206
|
-
None,
|
207
|
-
"Python implementation compatibility tag"
|
208
|
-
" (default: '%s')" % (python_tag()),
|
209
|
-
),
|
210
|
-
(
|
211
|
-
"build-number=",
|
212
|
-
None,
|
213
|
-
"Build number for this particular version. "
|
214
|
-
"As specified in PEP-0427, this must start with a digit. "
|
215
|
-
"[default: None]",
|
216
|
-
),
|
217
|
-
(
|
218
|
-
"py-limited-api=",
|
219
|
-
None,
|
220
|
-
"Python tag (cp32|cp33|cpNN) for abi3 wheel tag" " (default: false)",
|
221
|
-
),
|
222
|
-
]
|
223
|
-
|
224
|
-
boolean_options = ["keep-temp", "skip-build", "relative", "universal"]
|
225
|
-
|
226
|
-
def initialize_options(self):
|
227
|
-
self.bdist_dir = None
|
228
|
-
self.data_dir = None
|
229
|
-
self.plat_name = None
|
230
|
-
self.plat_tag = None
|
231
|
-
self.format = "zip"
|
232
|
-
self.keep_temp = False
|
233
|
-
self.dist_dir = None
|
234
|
-
self.egginfo_dir = None
|
235
|
-
self.root_is_pure = None
|
236
|
-
self.skip_build = None
|
237
|
-
self.relative = False
|
238
|
-
self.owner = None
|
239
|
-
self.group = None
|
240
|
-
self.universal = False
|
241
|
-
self.compression = "deflated"
|
242
|
-
self.python_tag = python_tag()
|
243
|
-
self.build_number = None
|
244
|
-
self.py_limited_api = False
|
245
|
-
self.plat_name_supplied = False
|
246
|
-
|
247
|
-
def finalize_options(self):
|
248
|
-
if self.bdist_dir is None:
|
249
|
-
bdist_base = self.get_finalized_command("bdist").bdist_base
|
250
|
-
self.bdist_dir = os.path.join(bdist_base, "wheel")
|
251
|
-
|
252
|
-
egg_info = self.distribution.get_command_obj("egg_info")
|
253
|
-
egg_info.ensure_finalized() # needed for correct `wheel_dist_name`
|
254
|
-
|
255
|
-
self.data_dir = self.wheel_dist_name + ".data"
|
256
|
-
self.plat_name_supplied = self.plat_name is not None
|
257
|
-
|
258
|
-
try:
|
259
|
-
self.compression = self.supported_compressions[self.compression]
|
260
|
-
except KeyError:
|
261
|
-
raise ValueError(f"Unsupported compression: {self.compression}") from None
|
262
|
-
|
263
|
-
need_options = ("dist_dir", "plat_name", "skip_build")
|
264
|
-
|
265
|
-
self.set_undefined_options("bdist", *zip(need_options, need_options))
|
266
|
-
|
267
|
-
self.root_is_pure = not (
|
268
|
-
self.distribution.has_ext_modules() or self.distribution.has_c_libraries()
|
269
|
-
)
|
270
|
-
|
271
|
-
if self.py_limited_api and not re.match(
|
272
|
-
PY_LIMITED_API_PATTERN, self.py_limited_api
|
273
|
-
):
|
274
|
-
raise ValueError("py-limited-api must match '%s'" % PY_LIMITED_API_PATTERN)
|
275
|
-
|
276
|
-
# Support legacy [wheel] section for setting universal
|
277
|
-
wheel = self.distribution.get_option_dict("wheel")
|
278
|
-
if "universal" in wheel:
|
279
|
-
# please don't define this in your global configs
|
280
|
-
log.warning(
|
281
|
-
"The [wheel] section is deprecated. Use [bdist_wheel] instead.",
|
282
|
-
)
|
283
|
-
val = wheel["universal"][1].strip()
|
284
|
-
if val.lower() in ("1", "true", "yes"):
|
285
|
-
self.universal = True
|
286
|
-
|
287
|
-
if self.build_number is not None and not self.build_number[:1].isdigit():
|
288
|
-
raise ValueError("Build tag (build-number) must start with a digit.")
|
289
|
-
|
290
|
-
@property
|
291
|
-
def wheel_dist_name(self):
|
292
|
-
"""Return distribution full name with - replaced with _"""
|
293
|
-
components = (
|
294
|
-
safer_name(self.distribution.get_name()),
|
295
|
-
safer_version(self.distribution.get_version()),
|
296
|
-
)
|
297
|
-
if self.build_number:
|
298
|
-
components += (self.build_number,)
|
299
|
-
return "-".join(components)
|
300
|
-
|
301
|
-
def get_tag(self):
|
302
|
-
# bdist sets self.plat_name if unset, we should only use it for purepy
|
303
|
-
# wheels if the user supplied it.
|
304
|
-
if self.plat_name_supplied:
|
305
|
-
plat_name = self.plat_name
|
306
|
-
elif self.root_is_pure:
|
307
|
-
plat_name = "any"
|
308
|
-
else:
|
309
|
-
# macosx contains system version in platform name so need special handle
|
310
|
-
if self.plat_name and not self.plat_name.startswith("macosx"):
|
311
|
-
plat_name = self.plat_name
|
312
|
-
else:
|
313
|
-
# on macosx always limit the platform name to comply with any
|
314
|
-
# c-extension modules in bdist_dir, since the user can specify
|
315
|
-
# a higher MACOSX_DEPLOYMENT_TARGET via tools like CMake
|
316
|
-
|
317
|
-
# on other platforms, and on macosx if there are no c-extension
|
318
|
-
# modules, use the default platform name.
|
319
|
-
plat_name = get_platform(self.bdist_dir)
|
320
|
-
|
321
|
-
if _is_32bit_interpreter():
|
322
|
-
if plat_name in ("linux-x86_64", "linux_x86_64"):
|
323
|
-
plat_name = "linux_i686"
|
324
|
-
if plat_name in ("linux-aarch64", "linux_aarch64"):
|
325
|
-
# TODO armv8l, packaging pull request #690 => this did not land
|
326
|
-
# in pip/packaging yet
|
327
|
-
plat_name = "linux_armv7l"
|
328
|
-
|
329
|
-
plat_name = (
|
330
|
-
plat_name.lower().replace("-", "_").replace(".", "_").replace(" ", "_")
|
331
|
-
)
|
332
|
-
|
333
|
-
if self.root_is_pure:
|
334
|
-
if self.universal:
|
335
|
-
impl = "py2.py3"
|
336
|
-
else:
|
337
|
-
impl = self.python_tag
|
338
|
-
tag = (impl, "none", plat_name)
|
339
|
-
else:
|
340
|
-
impl_name = tags.interpreter_name()
|
341
|
-
impl_ver = tags.interpreter_version()
|
342
|
-
impl = impl_name + impl_ver
|
343
|
-
# We don't work on CPython 3.1, 3.0.
|
344
|
-
if self.py_limited_api and (impl_name + impl_ver).startswith("cp3"):
|
345
|
-
impl = self.py_limited_api
|
346
|
-
abi_tag = "abi3"
|
347
|
-
else:
|
348
|
-
abi_tag = str(get_abi_tag()).lower()
|
349
|
-
tag = (impl, abi_tag, plat_name)
|
350
|
-
# issue gh-374: allow overriding plat_name
|
351
|
-
supported_tags = [
|
352
|
-
(t.interpreter, t.abi, plat_name) for t in tags.sys_tags()
|
353
|
-
]
|
354
|
-
assert (
|
355
|
-
tag in supported_tags
|
356
|
-
), f"would build wheel with unsupported tag {tag}"
|
357
|
-
return tag
|
358
|
-
|
359
|
-
def run(self):
|
360
|
-
build_scripts = self.reinitialize_command("build_scripts")
|
361
|
-
build_scripts.executable = "python"
|
362
|
-
build_scripts.force = True
|
363
|
-
|
364
|
-
build_ext = self.reinitialize_command("build_ext")
|
365
|
-
build_ext.inplace = False
|
366
|
-
|
367
|
-
if not self.skip_build:
|
368
|
-
self.run_command("build")
|
369
|
-
|
370
|
-
install = self.reinitialize_command("install", reinit_subcommands=True)
|
371
|
-
install.root = self.bdist_dir
|
372
|
-
install.compile = False
|
373
|
-
install.skip_build = self.skip_build
|
374
|
-
install.warn_dir = False
|
375
|
-
|
376
|
-
# A wheel without setuptools scripts is more cross-platform.
|
377
|
-
# Use the (undocumented) `no_ep` option to setuptools'
|
378
|
-
# install_scripts command to avoid creating entry point scripts.
|
379
|
-
install_scripts = self.reinitialize_command("install_scripts")
|
380
|
-
install_scripts.no_ep = True
|
381
|
-
|
382
|
-
# Use a custom scheme for the archive, because we have to decide
|
383
|
-
# at installation time which scheme to use.
|
384
|
-
for key in ("headers", "scripts", "data", "purelib", "platlib"):
|
385
|
-
setattr(install, "install_" + key, os.path.join(self.data_dir, key))
|
386
|
-
|
387
|
-
basedir_observed = ""
|
388
|
-
|
389
|
-
if os.name == "nt":
|
390
|
-
# win32 barfs if any of these are ''; could be '.'?
|
391
|
-
# (distutils.command.install:change_roots bug)
|
392
|
-
basedir_observed = os.path.normpath(os.path.join(self.data_dir, ".."))
|
393
|
-
self.install_libbase = self.install_lib = basedir_observed
|
394
|
-
|
395
|
-
setattr(
|
396
|
-
install,
|
397
|
-
"install_purelib" if self.root_is_pure else "install_platlib",
|
398
|
-
basedir_observed,
|
399
|
-
)
|
400
|
-
|
401
|
-
log.info(f"installing to {self.bdist_dir}")
|
402
|
-
|
403
|
-
self.run_command("install")
|
404
|
-
|
405
|
-
impl_tag, abi_tag, plat_tag = self.get_tag()
|
406
|
-
archive_basename = f"{self.wheel_dist_name}-{impl_tag}-{abi_tag}-{plat_tag}"
|
407
|
-
if not self.relative:
|
408
|
-
archive_root = self.bdist_dir
|
409
|
-
else:
|
410
|
-
archive_root = os.path.join(
|
411
|
-
self.bdist_dir, self._ensure_relative(install.install_base)
|
412
|
-
)
|
413
|
-
|
414
|
-
self.set_undefined_options("install_egg_info", ("target", "egginfo_dir"))
|
415
|
-
distinfo_dirname = (
|
416
|
-
f"{safer_name(self.distribution.get_name())}-"
|
417
|
-
f"{safer_version(self.distribution.get_version())}.dist-info"
|
418
|
-
)
|
419
|
-
distinfo_dir = os.path.join(self.bdist_dir, distinfo_dirname)
|
420
|
-
self.egg2dist(self.egginfo_dir, distinfo_dir)
|
421
|
-
|
422
|
-
self.write_wheelfile(distinfo_dir)
|
423
|
-
|
424
|
-
# Make the archive
|
425
|
-
if not os.path.exists(self.dist_dir):
|
426
|
-
os.makedirs(self.dist_dir)
|
427
|
-
|
428
|
-
wheel_path = os.path.join(self.dist_dir, archive_basename + ".whl")
|
429
|
-
with WheelFile(wheel_path, "w", self.compression) as wf:
|
430
|
-
wf.write_files(archive_root)
|
431
|
-
|
432
|
-
# Add to 'Distribution.dist_files' so that the "upload" command works
|
433
|
-
getattr(self.distribution, "dist_files", []).append(
|
434
|
-
(
|
435
|
-
"bdist_wheel",
|
436
|
-
"{}.{}".format(*sys.version_info[:2]), # like 3.7
|
437
|
-
wheel_path,
|
438
|
-
)
|
439
|
-
)
|
440
|
-
|
441
|
-
if not self.keep_temp:
|
442
|
-
log.info(f"removing {self.bdist_dir}")
|
443
|
-
if not self.dry_run:
|
444
|
-
if sys.version_info < (3, 12):
|
445
|
-
rmtree(self.bdist_dir, onerror=remove_readonly)
|
446
|
-
else:
|
447
|
-
rmtree(self.bdist_dir, onexc=remove_readonly_exc)
|
448
|
-
|
449
|
-
def write_wheelfile(
|
450
|
-
self, wheelfile_base, generator="bdist_wheel (" + wheel_version + ")"
|
451
|
-
):
|
452
|
-
from email.message import Message
|
453
|
-
|
454
|
-
msg = Message()
|
455
|
-
msg["Wheel-Version"] = "1.0" # of the spec
|
456
|
-
msg["Generator"] = generator
|
457
|
-
msg["Root-Is-Purelib"] = str(self.root_is_pure).lower()
|
458
|
-
if self.build_number is not None:
|
459
|
-
msg["Build"] = self.build_number
|
460
|
-
|
461
|
-
# Doesn't work for bdist_wininst
|
462
|
-
impl_tag, abi_tag, plat_tag = self.get_tag()
|
463
|
-
for impl in impl_tag.split("."):
|
464
|
-
for abi in abi_tag.split("."):
|
465
|
-
for plat in plat_tag.split("."):
|
466
|
-
msg["Tag"] = "-".join((impl, abi, plat))
|
467
|
-
|
468
|
-
wheelfile_path = os.path.join(wheelfile_base, "WHEEL")
|
469
|
-
log.info(f"creating {wheelfile_path}")
|
470
|
-
with open(wheelfile_path, "wb") as f:
|
471
|
-
BytesGenerator(f, maxheaderlen=0).flatten(msg)
|
472
|
-
|
473
|
-
def _ensure_relative(self, path):
|
474
|
-
# copied from dir_util, deleted
|
475
|
-
drive, path = os.path.splitdrive(path)
|
476
|
-
if path[0:1] == os.sep:
|
477
|
-
path = drive + path[1:]
|
478
|
-
return path
|
479
|
-
|
480
|
-
@property
|
481
|
-
def license_paths(self):
|
482
|
-
if setuptools_major_version >= 57:
|
483
|
-
# Setuptools has resolved any patterns to actual file names
|
484
|
-
return self.distribution.metadata.license_files or ()
|
485
|
-
|
486
|
-
files = set()
|
487
|
-
metadata = self.distribution.get_option_dict("metadata")
|
488
|
-
if setuptools_major_version >= 42:
|
489
|
-
# Setuptools recognizes the license_files option but does not do globbing
|
490
|
-
patterns = self.distribution.metadata.license_files
|
491
|
-
else:
|
492
|
-
# Prior to those, wheel is entirely responsible for handling license files
|
493
|
-
if "license_files" in metadata:
|
494
|
-
patterns = metadata["license_files"][1].split()
|
495
|
-
else:
|
496
|
-
patterns = ()
|
497
|
-
|
498
|
-
if "license_file" in metadata:
|
499
|
-
warnings.warn(
|
500
|
-
'The "license_file" option is deprecated. Use "license_files" instead.',
|
501
|
-
DeprecationWarning,
|
502
|
-
stacklevel=2,
|
503
|
-
)
|
504
|
-
files.add(metadata["license_file"][1])
|
505
|
-
|
506
|
-
if not files and not patterns and not isinstance(patterns, list):
|
507
|
-
patterns = ("LICEN[CS]E*", "COPYING*", "NOTICE*", "AUTHORS*")
|
508
|
-
|
509
|
-
for pattern in patterns:
|
510
|
-
for path in iglob(pattern):
|
511
|
-
if path.endswith("~"):
|
512
|
-
log.debug(
|
513
|
-
f'ignoring license file "{path}" as it looks like a backup'
|
514
|
-
)
|
515
|
-
continue
|
516
|
-
|
517
|
-
if path not in files and os.path.isfile(path):
|
518
|
-
log.info(
|
519
|
-
f'adding license file "{path}" (matched pattern "{pattern}")'
|
520
|
-
)
|
521
|
-
files.add(path)
|
522
|
-
|
523
|
-
return files
|
524
|
-
|
525
|
-
def egg2dist(self, egginfo_path, distinfo_path):
|
526
|
-
"""Convert an .egg-info directory into a .dist-info directory"""
|
527
|
-
|
528
|
-
def adios(p):
|
529
|
-
"""Appropriately delete directory, file or link."""
|
530
|
-
if os.path.exists(p) and not os.path.islink(p) and os.path.isdir(p):
|
531
|
-
shutil.rmtree(p)
|
532
|
-
elif os.path.exists(p):
|
533
|
-
os.unlink(p)
|
534
|
-
|
535
|
-
adios(distinfo_path)
|
536
|
-
|
537
|
-
if not os.path.exists(egginfo_path):
|
538
|
-
# There is no egg-info. This is probably because the egg-info
|
539
|
-
# file/directory is not named matching the distribution name used
|
540
|
-
# to name the archive file. Check for this case and report
|
541
|
-
# accordingly.
|
542
|
-
import glob
|
543
|
-
|
544
|
-
pat = os.path.join(os.path.dirname(egginfo_path), "*.egg-info")
|
545
|
-
possible = glob.glob(pat)
|
546
|
-
err = f"Egg metadata expected at {egginfo_path} but not found"
|
547
|
-
if possible:
|
548
|
-
alt = os.path.basename(possible[0])
|
549
|
-
err += f" ({alt} found - possible misnamed archive file?)"
|
550
|
-
|
551
|
-
raise ValueError(err)
|
552
|
-
|
553
|
-
if os.path.isfile(egginfo_path):
|
554
|
-
# .egg-info is a single file
|
555
|
-
pkginfo_path = egginfo_path
|
556
|
-
pkg_info = pkginfo_to_metadata(egginfo_path, egginfo_path)
|
557
|
-
os.mkdir(distinfo_path)
|
558
|
-
else:
|
559
|
-
# .egg-info is a directory
|
560
|
-
pkginfo_path = os.path.join(egginfo_path, "PKG-INFO")
|
561
|
-
pkg_info = pkginfo_to_metadata(egginfo_path, pkginfo_path)
|
562
|
-
|
563
|
-
# ignore common egg metadata that is useless to wheel
|
564
|
-
shutil.copytree(
|
565
|
-
egginfo_path,
|
566
|
-
distinfo_path,
|
567
|
-
ignore=lambda x, y: {
|
568
|
-
"PKG-INFO",
|
569
|
-
"requires.txt",
|
570
|
-
"SOURCES.txt",
|
571
|
-
"not-zip-safe",
|
572
|
-
},
|
573
|
-
)
|
574
|
-
|
575
|
-
# delete dependency_links if it is only whitespace
|
576
|
-
dependency_links_path = os.path.join(distinfo_path, "dependency_links.txt")
|
577
|
-
with open(dependency_links_path, encoding="utf-8") as dependency_links_file:
|
578
|
-
dependency_links = dependency_links_file.read().strip()
|
579
|
-
if not dependency_links:
|
580
|
-
adios(dependency_links_path)
|
581
|
-
|
582
|
-
pkg_info_path = os.path.join(distinfo_path, "METADATA")
|
583
|
-
serialization_policy = EmailPolicy(
|
584
|
-
utf8=True,
|
585
|
-
mangle_from_=False,
|
586
|
-
max_line_length=0,
|
587
|
-
)
|
588
|
-
with open(pkg_info_path, "w", encoding="utf-8") as out:
|
589
|
-
Generator(out, policy=serialization_policy).flatten(pkg_info)
|
590
|
-
|
591
|
-
for license_path in self.license_paths:
|
592
|
-
filename = os.path.basename(license_path)
|
593
|
-
shutil.copy(license_path, os.path.join(distinfo_path, filename))
|
594
|
-
|
595
|
-
adios(egginfo_path)
|
16
|
+
# Better integration/compatibility with setuptools:
|
17
|
+
# in the case new fixes or PEPs are implemented in setuptools
|
18
|
+
# there is no need to backport them to the deprecated code base.
|
19
|
+
# This is useful in the case of old packages in the ecosystem
|
20
|
+
# that are still used but have low maintenance.
|
21
|
+
from setuptools.command.bdist_wheel import bdist_wheel
|
22
|
+
except ImportError:
|
23
|
+
# Only used in the case of old setuptools versions.
|
24
|
+
# If the user wants to get the latest fixes/PEPs,
|
25
|
+
# they are encouraged to address the deprecation warning.
|
26
|
+
from ._bdist_wheel import bdist_wheel as bdist_wheel
|
@@ -14,25 +14,25 @@ class WheelError(Exception):
|
|
14
14
|
pass
|
15
15
|
|
16
16
|
|
17
|
-
def unpack_f(args):
|
17
|
+
def unpack_f(args: argparse.Namespace) -> None:
|
18
18
|
from .unpack import unpack
|
19
19
|
|
20
20
|
unpack(args.wheelfile, args.dest)
|
21
21
|
|
22
22
|
|
23
|
-
def pack_f(args):
|
23
|
+
def pack_f(args: argparse.Namespace) -> None:
|
24
24
|
from .pack import pack
|
25
25
|
|
26
26
|
pack(args.directory, args.dest_dir, args.build_number)
|
27
27
|
|
28
28
|
|
29
|
-
def convert_f(args):
|
29
|
+
def convert_f(args: argparse.Namespace) -> None:
|
30
30
|
from .convert import convert
|
31
31
|
|
32
32
|
convert(args.files, args.dest_dir, args.verbose)
|
33
33
|
|
34
34
|
|
35
|
-
def tags_f(args):
|
35
|
+
def tags_f(args: argparse.Namespace) -> None:
|
36
36
|
from .tags import tags
|
37
37
|
|
38
38
|
names = (
|
@@ -51,10 +51,10 @@ def tags_f(args):
|
|
51
51
|
print(name)
|
52
52
|
|
53
53
|
|
54
|
-
def version_f(args):
|
54
|
+
def version_f(args: argparse.Namespace) -> None:
|
55
55
|
from .. import __version__
|
56
56
|
|
57
|
-
print("wheel
|
57
|
+
print(f"wheel {__version__}")
|
58
58
|
|
59
59
|
|
60
60
|
def parse_build_tag(build_tag: str) -> str:
|