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
@@ -23,7 +23,8 @@ from setuptools.command.egg_info import write_requirements
|
|
23
23
|
from setuptools.config import expand, pyprojecttoml, setupcfg
|
24
24
|
from setuptools.config._apply_pyprojecttoml import _MissingDynamic, _some_attrgetter
|
25
25
|
from setuptools.dist import Distribution
|
26
|
-
from setuptools.errors import RemovedConfigError
|
26
|
+
from setuptools.errors import InvalidConfigError, RemovedConfigError
|
27
|
+
from setuptools.warnings import InformationOnly, SetuptoolsDeprecationWarning
|
27
28
|
|
28
29
|
from .downloads import retrieve_file, urls_from_file
|
29
30
|
|
@@ -35,11 +36,22 @@ def makedist(path, **attrs):
|
|
35
36
|
return Distribution({"src_root": path, **attrs})
|
36
37
|
|
37
38
|
|
39
|
+
def _mock_expand_patterns(patterns, *_, **__):
|
40
|
+
"""
|
41
|
+
Allow comparing the given patterns for 2 dist objects.
|
42
|
+
We need to strip special chars to avoid errors when validating.
|
43
|
+
"""
|
44
|
+
return [re.sub("[^a-z0-9]+", "", p, flags=re.I) or "empty" for p in patterns]
|
45
|
+
|
46
|
+
|
38
47
|
@pytest.mark.parametrize("url", urls_from_file(HERE / EXAMPLES_FILE))
|
39
48
|
@pytest.mark.filterwarnings("ignore")
|
40
49
|
@pytest.mark.uses_network
|
41
50
|
def test_apply_pyproject_equivalent_to_setupcfg(url, monkeypatch, tmp_path):
|
42
51
|
monkeypatch.setattr(expand, "read_attr", Mock(return_value="0.0.1"))
|
52
|
+
monkeypatch.setattr(
|
53
|
+
Distribution, "_expand_patterns", Mock(side_effect=_mock_expand_patterns)
|
54
|
+
)
|
43
55
|
setupcfg_example = retrieve_file(url)
|
44
56
|
pyproject_example = Path(tmp_path, "pyproject.toml")
|
45
57
|
setupcfg_text = setupcfg_example.read_text(encoding="utf-8")
|
@@ -92,7 +104,7 @@ version = "2020.0.0"
|
|
92
104
|
description = "Lovely Spam! Wonderful Spam!"
|
93
105
|
readme = "README.rst"
|
94
106
|
requires-python = ">=3.8"
|
95
|
-
license =
|
107
|
+
license-files = ["LICENSE.txt"] # Updated to be PEP 639 compliant
|
96
108
|
keywords = ["egg", "bacon", "sausage", "tomatoes", "Lobster Thermidor"]
|
97
109
|
authors = [
|
98
110
|
{email = "hi@pradyunsg.me"},
|
@@ -156,6 +168,32 @@ def main_gui(): pass
|
|
156
168
|
def main_tomatoes(): pass
|
157
169
|
"""
|
158
170
|
|
171
|
+
PEP639_LICENSE_TEXT = """\
|
172
|
+
[project]
|
173
|
+
name = "spam"
|
174
|
+
version = "2020.0.0"
|
175
|
+
authors = [
|
176
|
+
{email = "hi@pradyunsg.me"},
|
177
|
+
{name = "Tzu-Ping Chung"}
|
178
|
+
]
|
179
|
+
license = {text = "MIT"}
|
180
|
+
"""
|
181
|
+
|
182
|
+
PEP639_LICENSE_EXPRESSION = """\
|
183
|
+
[project]
|
184
|
+
name = "spam"
|
185
|
+
version = "2020.0.0"
|
186
|
+
authors = [
|
187
|
+
{email = "hi@pradyunsg.me"},
|
188
|
+
{name = "Tzu-Ping Chung"}
|
189
|
+
]
|
190
|
+
license = "mit or apache-2.0" # should be normalized in metadata
|
191
|
+
classifiers = [
|
192
|
+
"Development Status :: 5 - Production/Stable",
|
193
|
+
"Programming Language :: Python",
|
194
|
+
]
|
195
|
+
"""
|
196
|
+
|
159
197
|
|
160
198
|
def _pep621_example_project(
|
161
199
|
tmp_path,
|
@@ -179,7 +217,6 @@ def test_pep621_example(tmp_path):
|
|
179
217
|
"""Make sure the example in PEP 621 works"""
|
180
218
|
pyproject = _pep621_example_project(tmp_path)
|
181
219
|
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
182
|
-
assert dist.metadata.license == "--- LICENSE stub ---"
|
183
220
|
assert set(dist.metadata.license_files) == {"LICENSE.txt"}
|
184
221
|
|
185
222
|
|
@@ -251,22 +288,132 @@ def test_utf8_maintainer_in_metadata( # issue-3663
|
|
251
288
|
assert f"Maintainer-email: {expected_maintainers_meta_value}" in content
|
252
289
|
|
253
290
|
|
254
|
-
|
255
|
-
|
256
|
-
|
291
|
+
@pytest.mark.parametrize(
|
292
|
+
(
|
293
|
+
'pyproject_text',
|
294
|
+
'license',
|
295
|
+
'license_expression',
|
296
|
+
'content_str',
|
297
|
+
'not_content_str',
|
298
|
+
),
|
299
|
+
(
|
300
|
+
pytest.param(
|
301
|
+
PEP639_LICENSE_TEXT,
|
302
|
+
'MIT',
|
303
|
+
None,
|
304
|
+
'License: MIT',
|
305
|
+
'License-Expression: ',
|
306
|
+
id='license-text',
|
307
|
+
marks=[
|
308
|
+
pytest.mark.filterwarnings(
|
309
|
+
"ignore:.project.license. as a TOML table is deprecated",
|
310
|
+
)
|
311
|
+
],
|
312
|
+
),
|
313
|
+
pytest.param(
|
314
|
+
PEP639_LICENSE_EXPRESSION,
|
315
|
+
None,
|
316
|
+
'MIT OR Apache-2.0',
|
317
|
+
'License-Expression: MIT OR Apache-2.0',
|
318
|
+
'License: ',
|
319
|
+
id='license-expression',
|
320
|
+
),
|
321
|
+
),
|
322
|
+
)
|
323
|
+
def test_license_in_metadata(
|
324
|
+
license,
|
325
|
+
license_expression,
|
326
|
+
content_str,
|
327
|
+
not_content_str,
|
328
|
+
pyproject_text,
|
329
|
+
tmp_path,
|
330
|
+
):
|
331
|
+
pyproject = _pep621_example_project(
|
332
|
+
tmp_path,
|
333
|
+
"README",
|
334
|
+
pyproject_text=pyproject_text,
|
335
|
+
)
|
336
|
+
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
337
|
+
assert dist.metadata.license == license
|
338
|
+
assert dist.metadata.license_expression == license_expression
|
339
|
+
pkg_file = tmp_path / "PKG-FILE"
|
340
|
+
with open(pkg_file, "w", encoding="utf-8") as fh:
|
341
|
+
dist.metadata.write_pkg_file(fh)
|
342
|
+
content = pkg_file.read_text(encoding="utf-8")
|
343
|
+
assert "Metadata-Version: 2.4" in content
|
344
|
+
assert content_str in content
|
345
|
+
assert not_content_str not in content
|
346
|
+
|
347
|
+
|
348
|
+
def test_license_classifier_with_license_expression(tmp_path):
|
349
|
+
text = PEP639_LICENSE_EXPRESSION.rsplit("\n", 2)[0]
|
350
|
+
pyproject = _pep621_example_project(
|
351
|
+
tmp_path,
|
352
|
+
"README",
|
353
|
+
f"{text}\n \"License :: OSI Approved :: MIT License\"\n]",
|
354
|
+
)
|
355
|
+
msg = "License classifiers have been superseded by license expressions"
|
356
|
+
with pytest.raises(InvalidConfigError, match=msg) as exc:
|
357
|
+
pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
358
|
+
|
359
|
+
assert "License :: OSI Approved :: MIT License" in str(exc.value)
|
360
|
+
|
361
|
+
|
362
|
+
def test_license_classifier_without_license_expression(tmp_path):
|
363
|
+
text = """\
|
364
|
+
[project]
|
365
|
+
name = "spam"
|
366
|
+
version = "2020.0.0"
|
367
|
+
license = {text = "mit or apache-2.0"}
|
368
|
+
classifiers = ["License :: OSI Approved :: MIT License"]
|
369
|
+
"""
|
370
|
+
pyproject = _pep621_example_project(tmp_path, "README", text)
|
371
|
+
|
372
|
+
msg1 = "License classifiers are deprecated(?:.|\n)*MIT License"
|
373
|
+
msg2 = ".project.license. as a TOML table is deprecated"
|
374
|
+
with (
|
375
|
+
pytest.warns(SetuptoolsDeprecationWarning, match=msg1),
|
376
|
+
pytest.warns(SetuptoolsDeprecationWarning, match=msg2),
|
377
|
+
):
|
378
|
+
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
379
|
+
|
380
|
+
# Check license classifier is still included
|
381
|
+
assert dist.metadata.get_classifiers() == ["License :: OSI Approved :: MIT License"]
|
257
382
|
|
258
|
-
|
259
|
-
|
260
|
-
|
383
|
+
|
384
|
+
class TestLicenseFiles:
|
385
|
+
def base_pyproject(
|
386
|
+
self,
|
387
|
+
tmp_path,
|
388
|
+
additional_text="",
|
389
|
+
license_toml='license = {file = "LICENSE.txt"}\n',
|
390
|
+
):
|
391
|
+
text = PEP639_LICENSE_EXPRESSION
|
261
392
|
|
262
393
|
# Sanity-check
|
263
|
-
assert 'license =
|
394
|
+
assert 'license = "mit or apache-2.0"' in text
|
395
|
+
assert 'license-files' not in text
|
264
396
|
assert "[tool.setuptools]" not in text
|
265
397
|
|
398
|
+
text = re.sub(
|
399
|
+
r"(license = .*)\n",
|
400
|
+
license_toml,
|
401
|
+
text,
|
402
|
+
count=1,
|
403
|
+
)
|
404
|
+
assert license_toml in text # sanity check
|
266
405
|
text = f"{text}\n{additional_text}\n"
|
267
|
-
pyproject
|
406
|
+
pyproject = _pep621_example_project(tmp_path, "README", pyproject_text=text)
|
268
407
|
return pyproject
|
269
408
|
|
409
|
+
def base_pyproject_license_pep639(self, tmp_path, additional_text=""):
|
410
|
+
return self.base_pyproject(
|
411
|
+
tmp_path,
|
412
|
+
additional_text=additional_text,
|
413
|
+
license_toml='license = "licenseref-Proprietary"'
|
414
|
+
'\nlicense-files = ["_FILE*"]\n',
|
415
|
+
)
|
416
|
+
|
270
417
|
def test_both_license_and_license_files_defined(self, tmp_path):
|
271
418
|
setuptools_config = '[tool.setuptools]\nlicense-files = ["_FILE*"]'
|
272
419
|
pyproject = self.base_pyproject(tmp_path, setuptools_config)
|
@@ -279,14 +426,44 @@ class TestLicenseFiles:
|
|
279
426
|
license = tmp_path / "LICENSE.txt"
|
280
427
|
license.write_text("LicenseRef-Proprietary\n", encoding="utf-8")
|
281
428
|
|
282
|
-
|
429
|
+
msg1 = "'tool.setuptools.license-files' is deprecated in favor of 'project.license-files'"
|
430
|
+
msg2 = ".project.license. as a TOML table is deprecated"
|
431
|
+
with (
|
432
|
+
pytest.warns(SetuptoolsDeprecationWarning, match=msg1),
|
433
|
+
pytest.warns(SetuptoolsDeprecationWarning, match=msg2),
|
434
|
+
):
|
435
|
+
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
283
436
|
assert set(dist.metadata.license_files) == {"_FILE.rst", "_FILE.txt"}
|
284
437
|
assert dist.metadata.license == "LicenseRef-Proprietary\n"
|
285
438
|
|
439
|
+
def test_both_license_and_license_files_defined_pep639(self, tmp_path):
|
440
|
+
# Set license and license-files
|
441
|
+
pyproject = self.base_pyproject_license_pep639(tmp_path)
|
442
|
+
|
443
|
+
(tmp_path / "_FILE.txt").touch()
|
444
|
+
(tmp_path / "_FILE.rst").touch()
|
445
|
+
|
446
|
+
msg = "Normalizing.*LicenseRef"
|
447
|
+
with pytest.warns(InformationOnly, match=msg):
|
448
|
+
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
449
|
+
|
450
|
+
assert set(dist.metadata.license_files) == {"_FILE.rst", "_FILE.txt"}
|
451
|
+
assert dist.metadata.license is None
|
452
|
+
assert dist.metadata.license_expression == "LicenseRef-Proprietary"
|
453
|
+
|
454
|
+
def test_license_files_defined_twice(self, tmp_path):
|
455
|
+
# Set project.license-files and tools.setuptools.license-files
|
456
|
+
setuptools_config = '[tool.setuptools]\nlicense-files = ["_FILE*"]'
|
457
|
+
pyproject = self.base_pyproject_license_pep639(tmp_path, setuptools_config)
|
458
|
+
|
459
|
+
msg = "'project.license-files' is defined already. Remove 'tool.setuptools.license-files'"
|
460
|
+
with pytest.raises(InvalidConfigError, match=msg):
|
461
|
+
pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
462
|
+
|
286
463
|
def test_default_patterns(self, tmp_path):
|
287
464
|
setuptools_config = '[tool.setuptools]\nzip-safe = false'
|
288
465
|
# ^ used just to trigger section validation
|
289
|
-
pyproject = self.base_pyproject(tmp_path, setuptools_config)
|
466
|
+
pyproject = self.base_pyproject(tmp_path, setuptools_config, license_toml="")
|
290
467
|
|
291
468
|
license_files = "LICENCE-a.html COPYING-abc.txt AUTHORS-xyz NOTICE,def".split()
|
292
469
|
|
@@ -294,9 +471,39 @@ class TestLicenseFiles:
|
|
294
471
|
(tmp_path / fname).write_text(f"{fname}\n", encoding="utf-8")
|
295
472
|
|
296
473
|
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
474
|
+
|
297
475
|
assert (tmp_path / "LICENSE.txt").exists() # from base example
|
298
476
|
assert set(dist.metadata.license_files) == {*license_files, "LICENSE.txt"}
|
299
477
|
|
478
|
+
def test_missing_patterns(self, tmp_path):
|
479
|
+
pyproject = self.base_pyproject_license_pep639(tmp_path)
|
480
|
+
assert list(tmp_path.glob("_FILE*")) == [] # sanity check
|
481
|
+
|
482
|
+
msg1 = "Cannot find any files for the given pattern.*"
|
483
|
+
msg2 = "Normalizing 'licenseref-Proprietary' to 'LicenseRef-Proprietary'"
|
484
|
+
with (
|
485
|
+
pytest.warns(SetuptoolsDeprecationWarning, match=msg1),
|
486
|
+
pytest.warns(InformationOnly, match=msg2),
|
487
|
+
):
|
488
|
+
pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
489
|
+
|
490
|
+
def test_deprecated_file_expands_to_text(self, tmp_path):
|
491
|
+
"""Make sure the old example with ``license = {text = ...}`` works"""
|
492
|
+
|
493
|
+
assert 'license-files = ["LICENSE.txt"]' in PEP621_EXAMPLE # sanity check
|
494
|
+
text = PEP621_EXAMPLE.replace(
|
495
|
+
'license-files = ["LICENSE.txt"]',
|
496
|
+
'license = {file = "LICENSE.txt"}',
|
497
|
+
)
|
498
|
+
pyproject = _pep621_example_project(tmp_path, pyproject_text=text)
|
499
|
+
|
500
|
+
msg = ".project.license. as a TOML table is deprecated"
|
501
|
+
with pytest.warns(SetuptoolsDeprecationWarning, match=msg):
|
502
|
+
dist = pyprojecttoml.apply_configuration(makedist(tmp_path), pyproject)
|
503
|
+
|
504
|
+
assert dist.metadata.license == "--- LICENSE stub ---"
|
505
|
+
assert set(dist.metadata.license_files) == {"LICENSE.txt"} # auto-filled
|
506
|
+
|
300
507
|
|
301
508
|
class TestPyModules:
|
302
509
|
# https://github.com/pypa/setuptools/issues/4316
|
@@ -373,6 +580,11 @@ class TestPresetField:
|
|
373
580
|
@pytest.mark.parametrize(
|
374
581
|
("attr", "field", "value"),
|
375
582
|
[
|
583
|
+
("license_expression", "license", "MIT"),
|
584
|
+
pytest.param(
|
585
|
+
*("license", "license", "Not SPDX"),
|
586
|
+
marks=[pytest.mark.filterwarnings("ignore:.*license. overwritten")],
|
587
|
+
),
|
376
588
|
("classifiers", "classifiers", ["Private :: Classifier"]),
|
377
589
|
("entry_points", "scripts", {"console_scripts": ["foobar=foobar:main"]}),
|
378
590
|
("entry_points", "gui-scripts", {"gui_scripts": ["bazquux=bazquux:main"]}),
|
@@ -398,6 +610,7 @@ class TestPresetField:
|
|
398
610
|
@pytest.mark.parametrize(
|
399
611
|
("attr", "field", "value"),
|
400
612
|
[
|
613
|
+
("license_expression", "license", "MIT"),
|
401
614
|
("install_requires", "dependencies", []),
|
402
615
|
("extras_require", "optional-dependencies", {}),
|
403
616
|
("install_requires", "dependencies", ["six"]),
|
@@ -411,6 +624,26 @@ class TestPresetField:
|
|
411
624
|
dist_value = _some_attrgetter(f"metadata.{attr}", attr)(dist)
|
412
625
|
assert dist_value == value
|
413
626
|
|
627
|
+
def test_license_files_exempt_from_dynamic(self, monkeypatch, tmp_path):
|
628
|
+
"""
|
629
|
+
license-file is currently not considered in the context of dynamic.
|
630
|
+
As per 2025-02-19, https://packaging.python.org/en/latest/specifications/pyproject-toml/#license-files
|
631
|
+
allows setuptools to fill-in `license-files` the way it sees fit:
|
632
|
+
|
633
|
+
> If the license-files key is not defined, tools can decide how to handle license files.
|
634
|
+
> For example they can choose not to include any files or use their own
|
635
|
+
> logic to discover the appropriate files in the distribution.
|
636
|
+
|
637
|
+
Using license_files from setup.py to fill-in the value is in accordance
|
638
|
+
with this rule.
|
639
|
+
"""
|
640
|
+
monkeypatch.chdir(tmp_path)
|
641
|
+
pyproject = self.pyproject(tmp_path, [])
|
642
|
+
dist = makedist(tmp_path, license_files=["LIC*"])
|
643
|
+
(tmp_path / "LIC1").write_text("42", encoding="utf-8")
|
644
|
+
dist = pyprojecttoml.apply_configuration(dist, pyproject)
|
645
|
+
assert dist.metadata.license_files == ["LIC1"]
|
646
|
+
|
414
647
|
def test_warning_overwritten_dependencies(self, tmp_path):
|
415
648
|
src = "[project]\nname='pkg'\nversion='0.1'\ndependencies=['click']\n"
|
416
649
|
pyproject = tmp_path / "pyproject.toml"
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import configparser
|
2
2
|
import contextlib
|
3
3
|
import inspect
|
4
|
+
import re
|
4
5
|
from pathlib import Path
|
5
6
|
from unittest.mock import Mock, patch
|
6
7
|
|
@@ -420,36 +421,48 @@ class TestMetadata:
|
|
420
421
|
with get_dist(tmpdir):
|
421
422
|
pass
|
422
423
|
|
423
|
-
@pytest.mark.
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
424
|
+
@pytest.mark.parametrize(
|
425
|
+
("error_msg", "config", "invalid"),
|
426
|
+
[
|
427
|
+
(
|
428
|
+
"Invalid dash-separated key 'author-email' in 'metadata' (setup.cfg)",
|
429
|
+
DALS(
|
430
|
+
"""
|
431
|
+
[metadata]
|
432
|
+
author-email = test@test.com
|
433
|
+
maintainer_email = foo@foo.com
|
434
|
+
"""
|
435
|
+
),
|
436
|
+
{"author-email": "test@test.com"},
|
437
|
+
),
|
438
|
+
(
|
439
|
+
"Invalid uppercase key 'Name' in 'metadata' (setup.cfg)",
|
440
|
+
DALS(
|
441
|
+
"""
|
442
|
+
[metadata]
|
443
|
+
Name = foo
|
444
|
+
description = Some description
|
445
|
+
"""
|
446
|
+
),
|
447
|
+
{"Name": "foo"},
|
448
|
+
),
|
449
|
+
],
|
450
|
+
)
|
451
|
+
def test_invalid_options_previously_deprecated(
|
452
|
+
self, tmpdir, error_msg, config, invalid
|
453
|
+
):
|
454
|
+
# This test and related methods can be removed when no longer needed.
|
455
|
+
# Deprecation postponed due to push-back from the community in
|
456
|
+
# https://github.com/pypa/setuptools/issues/4910
|
457
|
+
fake_env(tmpdir, config)
|
458
|
+
with pytest.warns(SetuptoolsDeprecationWarning, match=re.escape(error_msg)):
|
459
|
+
dist = get_dist(tmpdir).__enter__()
|
460
|
+
|
461
|
+
tmpdir.join('setup.cfg').remove()
|
450
462
|
|
451
|
-
|
452
|
-
|
463
|
+
for field, value in invalid.items():
|
464
|
+
attr = field.replace("-", "_").lower()
|
465
|
+
assert getattr(dist.metadata, attr) == value
|
453
466
|
|
454
467
|
|
455
468
|
class TestOptions:
|
py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/integration/test_pip_install_sdist.py
CHANGED
@@ -54,7 +54,7 @@ EXAMPLES = [
|
|
54
54
|
("pyyaml", LATEST), # cython + custom build_ext + custom distclass
|
55
55
|
("charset-normalizer", LATEST), # uses mypyc, used by aiohttp
|
56
56
|
("protobuf", LATEST),
|
57
|
-
("requests", LATEST),
|
57
|
+
# ("requests", LATEST), # XXX: https://github.com/psf/requests/pull/6920
|
58
58
|
("celery", LATEST),
|
59
59
|
# When adding packages to this list, make sure they expose a `__version__`
|
60
60
|
# attribute, or modify the tests below
|
@@ -59,7 +59,7 @@ setup(
|
|
59
59
|
EXAMPLES = {
|
60
60
|
"dummy-dist": {
|
61
61
|
"setup.py": SETUPPY_EXAMPLE,
|
62
|
-
"
|
62
|
+
"licenses_dir": {"DUMMYFILE": ""},
|
63
63
|
**dict.fromkeys(DEFAULT_LICENSE_FILES | OTHER_IGNORED_FILES, ""),
|
64
64
|
},
|
65
65
|
"simple-dist": {
|
@@ -172,6 +172,20 @@ EXAMPLES = {
|
|
172
172
|
),
|
173
173
|
"README.rst": "UTF-8 描述 説明",
|
174
174
|
},
|
175
|
+
"licenses-dist": {
|
176
|
+
"setup.cfg": cleandoc(
|
177
|
+
"""
|
178
|
+
[metadata]
|
179
|
+
name = licenses-dist
|
180
|
+
version = 1.0
|
181
|
+
license_files = **/LICENSE
|
182
|
+
"""
|
183
|
+
),
|
184
|
+
"LICENSE": "",
|
185
|
+
"src": {
|
186
|
+
"vendor": {"LICENSE": ""},
|
187
|
+
},
|
188
|
+
},
|
175
189
|
}
|
176
190
|
|
177
191
|
|
@@ -238,6 +252,11 @@ def dummy_dist(tmp_path_factory):
|
|
238
252
|
return mkexample(tmp_path_factory, "dummy-dist")
|
239
253
|
|
240
254
|
|
255
|
+
@pytest.fixture
|
256
|
+
def licenses_dist(tmp_path_factory):
|
257
|
+
return mkexample(tmp_path_factory, "licenses-dist")
|
258
|
+
|
259
|
+
|
241
260
|
def test_no_scripts(wheel_paths):
|
242
261
|
"""Make sure entry point scripts are not generated."""
|
243
262
|
path = next(path for path in wheel_paths if "complex_dist" in path)
|
@@ -297,33 +316,34 @@ def test_licenses_default(dummy_dist, monkeypatch, tmp_path):
|
|
297
316
|
bdist_wheel_cmd(bdist_dir=str(tmp_path)).run()
|
298
317
|
with ZipFile("dist/dummy_dist-1.0-py3-none-any.whl") as wf:
|
299
318
|
license_files = {
|
300
|
-
"dummy_dist-1.0.dist-info/" + fname
|
319
|
+
"dummy_dist-1.0.dist-info/licenses/" + fname
|
320
|
+
for fname in DEFAULT_LICENSE_FILES
|
301
321
|
}
|
302
322
|
assert set(wf.namelist()) == DEFAULT_FILES | license_files
|
303
323
|
|
304
324
|
|
305
325
|
def test_licenses_deprecated(dummy_dist, monkeypatch, tmp_path):
|
306
326
|
dummy_dist.joinpath("setup.cfg").write_text(
|
307
|
-
"[metadata]\nlicense_file=
|
327
|
+
"[metadata]\nlicense_file=licenses_dir/DUMMYFILE", encoding="utf-8"
|
308
328
|
)
|
309
329
|
monkeypatch.chdir(dummy_dist)
|
310
330
|
|
311
331
|
bdist_wheel_cmd(bdist_dir=str(tmp_path)).run()
|
312
332
|
|
313
333
|
with ZipFile("dist/dummy_dist-1.0-py3-none-any.whl") as wf:
|
314
|
-
license_files = {"dummy_dist-1.0.dist-info/DUMMYFILE"}
|
334
|
+
license_files = {"dummy_dist-1.0.dist-info/licenses/licenses_dir/DUMMYFILE"}
|
315
335
|
assert set(wf.namelist()) == DEFAULT_FILES | license_files
|
316
336
|
|
317
337
|
|
318
338
|
@pytest.mark.parametrize(
|
319
339
|
("config_file", "config"),
|
320
340
|
[
|
321
|
-
("setup.cfg", "[metadata]\nlicense_files=
|
322
|
-
("setup.cfg", "[metadata]\nlicense_files=
|
341
|
+
("setup.cfg", "[metadata]\nlicense_files=licenses_dir/*\n LICENSE"),
|
342
|
+
("setup.cfg", "[metadata]\nlicense_files=licenses_dir/*, LICENSE"),
|
323
343
|
(
|
324
344
|
"setup.py",
|
325
345
|
SETUPPY_EXAMPLE.replace(
|
326
|
-
")", " license_files=['
|
346
|
+
")", " license_files=['licenses_dir/DUMMYFILE', 'LICENSE'])"
|
327
347
|
),
|
328
348
|
),
|
329
349
|
],
|
@@ -334,9 +354,29 @@ def test_licenses_override(dummy_dist, monkeypatch, tmp_path, config_file, confi
|
|
334
354
|
bdist_wheel_cmd(bdist_dir=str(tmp_path)).run()
|
335
355
|
with ZipFile("dist/dummy_dist-1.0-py3-none-any.whl") as wf:
|
336
356
|
license_files = {
|
337
|
-
"dummy_dist-1.0.dist-info/" + fname
|
357
|
+
"dummy_dist-1.0.dist-info/licenses/" + fname
|
358
|
+
for fname in {"licenses_dir/DUMMYFILE", "LICENSE"}
|
338
359
|
}
|
339
360
|
assert set(wf.namelist()) == DEFAULT_FILES | license_files
|
361
|
+
metadata = wf.read("dummy_dist-1.0.dist-info/METADATA").decode("utf8")
|
362
|
+
assert "License-File: licenses_dir/DUMMYFILE" in metadata
|
363
|
+
assert "License-File: LICENSE" in metadata
|
364
|
+
|
365
|
+
|
366
|
+
def test_licenses_preserve_folder_structure(licenses_dist, monkeypatch, tmp_path):
|
367
|
+
monkeypatch.chdir(licenses_dist)
|
368
|
+
bdist_wheel_cmd(bdist_dir=str(tmp_path)).run()
|
369
|
+
print(os.listdir("dist"))
|
370
|
+
with ZipFile("dist/licenses_dist-1.0-py3-none-any.whl") as wf:
|
371
|
+
default_files = {name.replace("dummy_", "licenses_") for name in DEFAULT_FILES}
|
372
|
+
license_files = {
|
373
|
+
"licenses_dist-1.0.dist-info/licenses/LICENSE",
|
374
|
+
"licenses_dist-1.0.dist-info/licenses/src/vendor/LICENSE",
|
375
|
+
}
|
376
|
+
assert set(wf.namelist()) == default_files | license_files
|
377
|
+
metadata = wf.read("licenses_dist-1.0.dist-info/METADATA").decode("utf8")
|
378
|
+
assert "License-File: src/vendor/LICENSE" in metadata
|
379
|
+
assert "License-File: LICENSE" in metadata
|
340
380
|
|
341
381
|
|
342
382
|
def test_licenses_disabled(dummy_dist, monkeypatch, tmp_path):
|
@@ -621,3 +661,48 @@ def test_dist_info_provided(dummy_dist, monkeypatch, tmp_path):
|
|
621
661
|
assert expected - files_found == set()
|
622
662
|
# Make sure there is no accidental egg-info bleeding into the wheel.
|
623
663
|
assert not [path for path in files_found if 'egg-info' in str(path)]
|
664
|
+
|
665
|
+
|
666
|
+
def test_allow_grace_period_parent_directory_license(monkeypatch, tmp_path):
|
667
|
+
# Motivation: https://github.com/pypa/setuptools/issues/4892
|
668
|
+
# TODO: Remove this test after deprecation period is over
|
669
|
+
files = {
|
670
|
+
"LICENSE.txt": "parent license", # <---- the license files are outside
|
671
|
+
"NOTICE.txt": "parent notice",
|
672
|
+
"python": {
|
673
|
+
"pyproject.toml": cleandoc(
|
674
|
+
"""
|
675
|
+
[project]
|
676
|
+
name = "test-proj"
|
677
|
+
dynamic = ["version"] # <---- testing dynamic will not break
|
678
|
+
[tool.setuptools.dynamic]
|
679
|
+
version.file = "VERSION"
|
680
|
+
"""
|
681
|
+
),
|
682
|
+
"setup.cfg": cleandoc(
|
683
|
+
"""
|
684
|
+
[metadata]
|
685
|
+
license_files =
|
686
|
+
../LICENSE.txt
|
687
|
+
../NOTICE.txt
|
688
|
+
"""
|
689
|
+
),
|
690
|
+
"VERSION": "42",
|
691
|
+
},
|
692
|
+
}
|
693
|
+
jaraco.path.build(files, prefix=str(tmp_path))
|
694
|
+
monkeypatch.chdir(tmp_path / "python")
|
695
|
+
msg = "Pattern '../.*.txt' cannot contain '..'"
|
696
|
+
with pytest.warns(SetuptoolsDeprecationWarning, match=msg):
|
697
|
+
bdist_wheel_cmd().run()
|
698
|
+
with ZipFile("dist/test_proj-42-py3-none-any.whl") as wf:
|
699
|
+
files_found = set(wf.namelist())
|
700
|
+
expected_files = {
|
701
|
+
"test_proj-42.dist-info/licenses/LICENSE.txt",
|
702
|
+
"test_proj-42.dist-info/licenses/NOTICE.txt",
|
703
|
+
}
|
704
|
+
assert expected_files <= files_found
|
705
|
+
|
706
|
+
metadata = wf.read("test_proj-42.dist-info/METADATA").decode("utf8")
|
707
|
+
assert "License-File: LICENSE.txt" in metadata
|
708
|
+
assert "License-File: NOTICE.txt" in metadata
|
@@ -6,6 +6,7 @@ import shutil
|
|
6
6
|
import signal
|
7
7
|
import sys
|
8
8
|
import tarfile
|
9
|
+
import warnings
|
9
10
|
from concurrent import futures
|
10
11
|
from pathlib import Path
|
11
12
|
from typing import Any, Callable
|
@@ -15,6 +16,8 @@ import pytest
|
|
15
16
|
from jaraco import path
|
16
17
|
from packaging.requirements import Requirement
|
17
18
|
|
19
|
+
from setuptools.warnings import SetuptoolsDeprecationWarning
|
20
|
+
|
18
21
|
from .textwrap import DALS
|
19
22
|
|
20
23
|
SETUP_SCRIPT_STUB = "__import__('setuptools').setup()"
|
@@ -384,8 +387,15 @@ class TestBuildMetaBackend:
|
|
384
387
|
build_backend = self.get_build_backend()
|
385
388
|
with tmpdir.as_cwd():
|
386
389
|
path.build(files)
|
387
|
-
|
388
|
-
|
390
|
+
msgs = [
|
391
|
+
"'tool.setuptools.license-files' is deprecated in favor of 'project.license-files'",
|
392
|
+
"`project.license` as a TOML table is deprecated",
|
393
|
+
]
|
394
|
+
with warnings.catch_warnings():
|
395
|
+
for msg in msgs:
|
396
|
+
warnings.filterwarnings("ignore", msg, SetuptoolsDeprecationWarning)
|
397
|
+
sdist_path = build_backend.build_sdist("temp")
|
398
|
+
wheel_file = build_backend.build_wheel("temp")
|
389
399
|
|
390
400
|
with tarfile.open(os.path.join(tmpdir, "temp", sdist_path)) as tar:
|
391
401
|
sdist_contents = set(tar.getnames())
|
@@ -393,7 +403,9 @@ class TestBuildMetaBackend:
|
|
393
403
|
with ZipFile(os.path.join(tmpdir, "temp", wheel_file)) as zipfile:
|
394
404
|
wheel_contents = set(zipfile.namelist())
|
395
405
|
metadata = str(zipfile.read("foo-0.1.dist-info/METADATA"), "utf-8")
|
396
|
-
license = str(
|
406
|
+
license = str(
|
407
|
+
zipfile.read("foo-0.1.dist-info/licenses/LICENSE.txt"), "utf-8"
|
408
|
+
)
|
397
409
|
epoints = str(zipfile.read("foo-0.1.dist-info/entry_points.txt"), "utf-8")
|
398
410
|
|
399
411
|
assert sdist_contents - {"foo-0.1/setup.py"} == {
|
@@ -426,7 +438,7 @@ class TestBuildMetaBackend:
|
|
426
438
|
"foo/cli.py",
|
427
439
|
"foo/data.txt", # include_package_data defaults to True
|
428
440
|
"foo/py.typed", # include type information by default
|
429
|
-
"foo-0.1.dist-info/LICENSE.txt",
|
441
|
+
"foo-0.1.dist-info/licenses/LICENSE.txt",
|
430
442
|
"foo-0.1.dist-info/METADATA",
|
431
443
|
"foo-0.1.dist-info/WHEEL",
|
432
444
|
"foo-0.1.dist-info/entry_points.txt",
|
@@ -438,6 +450,7 @@ class TestBuildMetaBackend:
|
|
438
450
|
for line in (
|
439
451
|
"Summary: This is a Python package",
|
440
452
|
"License: MIT",
|
453
|
+
"License-File: LICENSE.txt",
|
441
454
|
"Classifier: Intended Audience :: Developers",
|
442
455
|
"Requires-Dist: appdirs",
|
443
456
|
"Requires-Dist: " + str(Requirement('tomli>=1 ; extra == "all"')),
|