wexample-filestate-python 0.0.48__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.
Files changed (80) hide show
  1. wexample_filestate_python/__init__.py +0 -0
  2. wexample_filestate_python/__pycache__/__init__.py +0 -0
  3. wexample_filestate_python/common/__init__.py +0 -0
  4. wexample_filestate_python/common/__pycache__/__init__.py +0 -0
  5. wexample_filestate_python/common/pipy_gateway.py +20 -0
  6. wexample_filestate_python/config_option/__init__.py +0 -0
  7. wexample_filestate_python/config_option/__pycache__/__init__.py +0 -0
  8. wexample_filestate_python/config_option/mixin/__init__.py +0 -0
  9. wexample_filestate_python/config_option/mixin/__pycache__/__init__.py +0 -0
  10. wexample_filestate_python/config_option/mixin/with_stdout_wrapping_mixin.py +46 -0
  11. wexample_filestate_python/config_value/__init__.py +0 -0
  12. wexample_filestate_python/config_value/__pycache__/__init__.py +0 -0
  13. wexample_filestate_python/config_value/python_config_value.py +195 -0
  14. wexample_filestate_python/const/__init__.py +0 -0
  15. wexample_filestate_python/const/__pycache__/__init__.py +0 -0
  16. wexample_filestate_python/const/name_pattern.py +4 -0
  17. wexample_filestate_python/const/python_file.py +5 -0
  18. wexample_filestate_python/file/__init__.py +0 -0
  19. wexample_filestate_python/file/__pycache__/__init__.py +0 -0
  20. wexample_filestate_python/file/python_file.py +12 -0
  21. wexample_filestate_python/helpers/__init__.py +0 -0
  22. wexample_filestate_python/helpers/__pycache__/__init__.py +0 -0
  23. wexample_filestate_python/helpers/package.py +122 -0
  24. wexample_filestate_python/helpers/toml.py +116 -0
  25. wexample_filestate_python/option/__init__.py +0 -0
  26. wexample_filestate_python/option/__pycache__/__init__.py +0 -0
  27. wexample_filestate_python/option/abstract_python_file_content_option.py +45 -0
  28. wexample_filestate_python/option/add_future_annotations_option.py +79 -0
  29. wexample_filestate_python/option/add_return_types_option.py +265 -0
  30. wexample_filestate_python/option/fix_attrs_option.py +37 -0
  31. wexample_filestate_python/option/fix_blank_lines_option.py +47 -0
  32. wexample_filestate_python/option/format_option.py +34 -0
  33. wexample_filestate_python/option/fstringify_option.py +34 -0
  34. wexample_filestate_python/option/modernize_typing_option.py +25 -0
  35. wexample_filestate_python/option/order_class_attributes_option.py +34 -0
  36. wexample_filestate_python/option/order_class_docstring_option.py +36 -0
  37. wexample_filestate_python/option/order_class_methods_option.py +37 -0
  38. wexample_filestate_python/option/order_constants_option.py +35 -0
  39. wexample_filestate_python/option/order_iterable_items_option.py +31 -0
  40. wexample_filestate_python/option/order_main_guard_option.py +44 -0
  41. wexample_filestate_python/option/order_module_docstring_option.py +73 -0
  42. wexample_filestate_python/option/order_module_functions_option.py +42 -0
  43. wexample_filestate_python/option/order_module_metadata_option.py +62 -0
  44. wexample_filestate_python/option/order_type_checking_block_option.py +51 -0
  45. wexample_filestate_python/option/python_option.py +164 -0
  46. wexample_filestate_python/option/relocate_imports_option.py +189 -0
  47. wexample_filestate_python/option/remove_unused_option.py +45 -0
  48. wexample_filestate_python/option/sort_imports_option.py +26 -0
  49. wexample_filestate_python/option/unquote_annotations_option.py +85 -0
  50. wexample_filestate_python/options_provider/__init__.py +0 -0
  51. wexample_filestate_python/options_provider/__pycache__/__init__.py +0 -0
  52. wexample_filestate_python/options_provider/python_options_provider.py +24 -0
  53. wexample_filestate_python/py.typed +0 -0
  54. wexample_filestate_python/utils/__init__.py +0 -0
  55. wexample_filestate_python/utils/__pycache__/__init__.py +0 -0
  56. wexample_filestate_python/utils/python_attrs_utils.py +112 -0
  57. wexample_filestate_python/utils/python_blank_lines_utils.py +568 -0
  58. wexample_filestate_python/utils/python_class_attributes_utils.py +275 -0
  59. wexample_filestate_python/utils/python_class_docstring_utils.py +85 -0
  60. wexample_filestate_python/utils/python_class_methods_utils.py +230 -0
  61. wexample_filestate_python/utils/python_constants_utils.py +302 -0
  62. wexample_filestate_python/utils/python_docstring_utils.py +117 -0
  63. wexample_filestate_python/utils/python_functions_utils.py +212 -0
  64. wexample_filestate_python/utils/python_iterable_utils.py +131 -0
  65. wexample_filestate_python/utils/python_main_guard_utils.py +80 -0
  66. wexample_filestate_python/utils/python_module_metadata_utils.py +147 -0
  67. wexample_filestate_python/utils/python_type_checking_utils.py +113 -0
  68. wexample_filestate_python/utils/relocate_imports/__init__.py +7 -0
  69. wexample_filestate_python/utils/relocate_imports/__pycache__/__init__.py +0 -0
  70. wexample_filestate_python/utils/relocate_imports/python_import_rewriter.py +413 -0
  71. wexample_filestate_python/utils/relocate_imports/python_localize_runtime_imports.py +324 -0
  72. wexample_filestate_python/utils/relocate_imports/python_parser_import_index.py +80 -0
  73. wexample_filestate_python/utils/relocate_imports/python_runtime_symbol_collector.py +33 -0
  74. wexample_filestate_python/utils/relocate_imports/python_usage_collector.py +410 -0
  75. wexample_filestate_python/workdir/__init__.py +0 -0
  76. wexample_filestate_python/workdir/__pycache__/__init__.py +0 -0
  77. wexample_filestate_python-0.0.48.dist-info/METADATA +191 -0
  78. wexample_filestate_python-0.0.48.dist-info/RECORD +80 -0
  79. wexample_filestate_python-0.0.48.dist-info/WHEEL +4 -0
  80. wexample_filestate_python-0.0.48.dist-info/entry_points.txt +4 -0
@@ -0,0 +1,80 @@
1
+ wexample_filestate_python-0.0.48.dist-info/METADATA,sha256=6bGxsZAfRlQ3EUNM-KsQT-lkCCgpkXXBxE3NfdIbgS0,6477
2
+ wexample_filestate_python-0.0.48.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
+ wexample_filestate_python-0.0.48.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
+ wexample_filestate_python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ wexample_filestate_python/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ wexample_filestate_python/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ wexample_filestate_python/common/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ wexample_filestate_python/common/pipy_gateway.py,sha256=VDqr-RgOoPU6TRCMBTPl52yzbp2Yp5iGr65XYXOZMCE,699
9
+ wexample_filestate_python/config_option/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ wexample_filestate_python/config_option/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ wexample_filestate_python/config_option/mixin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ wexample_filestate_python/config_option/mixin/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ wexample_filestate_python/config_option/mixin/with_stdout_wrapping_mixin.py,sha256=bxSUZ5gtlPz9v9qv-Rl4-JVSM7tm9JRRbMHQUZI_okc,1433
14
+ wexample_filestate_python/config_value/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ wexample_filestate_python/config_value/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ wexample_filestate_python/config_value/python_config_value.py,sha256=lh53ZKDPFMBLeaen81CmDDmKV_YAYPiaMdFR5z2dVg4,8655
17
+ wexample_filestate_python/const/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ wexample_filestate_python/const/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ wexample_filestate_python/const/name_pattern.py,sha256=Qo-M9k9fJvR4qlowtkx2GlLooxtw21Gd4FQmmOQn9QQ,127
20
+ wexample_filestate_python/const/python_file.py,sha256=8isJQkUPZg_Z4a3thBBJItfb1EE4O6DIpf95Ux0r28s,125
21
+ wexample_filestate_python/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ wexample_filestate_python/file/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ wexample_filestate_python/file/python_file.py,sha256=AhZIjpnh2BKmkV5fL5OYsZIxMJfROfe3B3XDpGq67UU,309
24
+ wexample_filestate_python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ wexample_filestate_python/helpers/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ wexample_filestate_python/helpers/package.py,sha256=DKYCYQkiTrGgAR2RqaHtAKc0r1M0TfzWtEzZmOAOXVs,3499
27
+ wexample_filestate_python/helpers/toml.py,sha256=C0-WkUkUMbGIXKTn9RbsNZ75G_2FrxFt1CYwLTS76Vc,3197
28
+ wexample_filestate_python/option/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ wexample_filestate_python/option/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ wexample_filestate_python/option/abstract_python_file_content_option.py,sha256=9XthykrCnilPQoYE7A1wS_2FgfXw9FPLorn9wxVjMCw,1577
31
+ wexample_filestate_python/option/add_future_annotations_option.py,sha256=eHs9C-J3oJfwIIDEp6KMbsDz_D8Wyxg17s1oXBsMAWY,3079
32
+ wexample_filestate_python/option/add_return_types_option.py,sha256=sLVNJlUDrqX_MUjqbzYQRpOawndteCK7LNQHJUaHXI0,11316
33
+ wexample_filestate_python/option/fix_attrs_option.py,sha256=F-ifh7__R2mpFFdbYS-0I74eHBQCWr0WP9kWdER9HjU,1141
34
+ wexample_filestate_python/option/fix_blank_lines_option.py,sha256=de0mbtJ6ys9qnAcKbfdw9pwQUblX2HINdrE8-Jfzb6E,2144
35
+ wexample_filestate_python/option/format_option.py,sha256=7Sa_if8x_KmES6UHZzPc6FDXn2JtwW4Ze00-SBwD4pQ,1094
36
+ wexample_filestate_python/option/fstringify_option.py,sha256=G-tWWQ9DIjQMjlXTrjaN_7HMKyxdEq4HhV4OwdnVSv4,1185
37
+ wexample_filestate_python/option/modernize_typing_option.py,sha256=uGBOOXLbRodmXLVoPNbJ40_YAS3QWA8mXR0vwByYuWc,905
38
+ wexample_filestate_python/option/order_class_attributes_option.py,sha256=OIxJ7FRay4BLGcm0DwVXZE6bxkj5VmixKBXoshABlqE,1270
39
+ wexample_filestate_python/option/order_class_docstring_option.py,sha256=XpH6X1iTjexc3wm1318mPSwKCfUQJtaProwkbUmr6U4,1373
40
+ wexample_filestate_python/option/order_class_methods_option.py,sha256=epVh90Zd02IoY8OvClj4kY6QfAjYxcyxLfgGcp6a9u8,1346
41
+ wexample_filestate_python/option/order_constants_option.py,sha256=hPfBTG0vaLNq5LA793eWvnIOpXYqEadFtORLrYHtaUE,1364
42
+ wexample_filestate_python/option/order_iterable_items_option.py,sha256=uAWmyF7tbVg73wFsNRvtvIfFv3_jd5gv63QGVriZMj0,1305
43
+ wexample_filestate_python/option/order_main_guard_option.py,sha256=JLEiQ3CKJQ7j8EKqWt-RiU7rYvN78LZIE-B7fnWyWcI,1536
44
+ wexample_filestate_python/option/order_module_docstring_option.py,sha256=VkahnK0406vRZ4nuV8I0OaJd7KlWowyoLoC9UpGHG5M,3008
45
+ wexample_filestate_python/option/order_module_functions_option.py,sha256=Q1fzumfrxByMw4_OuDi7GAo67vje7GxLnxedEMIF6o4,1681
46
+ wexample_filestate_python/option/order_module_metadata_option.py,sha256=0FAxNrKT6rZlo-YERyBSg3x82Ri8j6qKuM2NfzrNW1A,2368
47
+ wexample_filestate_python/option/order_type_checking_block_option.py,sha256=-5fJ_XPBiEybd3dyMsNGDoPkDHT8-wA2fawM78W_-_I,2012
48
+ wexample_filestate_python/option/python_option.py,sha256=jaiRwKfFI6ArS0Ggfx-DLo7OKUMee5hbmKy19ZqW1YE,7612
49
+ wexample_filestate_python/option/relocate_imports_option.py,sha256=Bn9VTuPsLk7kZDdgOQEpvnSw3jRAfkWZlh8Zo67vajg,8367
50
+ wexample_filestate_python/option/remove_unused_option.py,sha256=A0ZEBFTSuA-9BaezvAk2SRljA52YIbSTLYHg2e_d8BE,1662
51
+ wexample_filestate_python/option/sort_imports_option.py,sha256=3gPGfzFY0AFw8r0UeI41Ll_YrYVKaZBzb3Nn0rYpyuo,844
52
+ wexample_filestate_python/option/unquote_annotations_option.py,sha256=y-jbNGuq7wqHUljjcvpJQkCuUQMmKaaHfUNzKyFJFFQ,3211
53
+ wexample_filestate_python/options_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ wexample_filestate_python/options_provider/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ wexample_filestate_python/options_provider/python_options_provider.py,sha256=EQBIIWyIqcbxGZlvySPZGD0zNPxCHOpNfvlU-RtwrWk,594
56
+ wexample_filestate_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ wexample_filestate_python/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ wexample_filestate_python/utils/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ wexample_filestate_python/utils/python_attrs_utils.py,sha256=pSqrEjkpXyBTKciqAObNeAYk2wBVX7UEKzJOmHUaRAc,4135
60
+ wexample_filestate_python/utils/python_blank_lines_utils.py,sha256=XXiKzWXCFX-c-Rprl1RYxMBnBfW53ONtBOOnLS4B-AI,21772
61
+ wexample_filestate_python/utils/python_class_attributes_utils.py,sha256=1T_0LzMj2YjofYihu3pZYMQfS-hXiOWbXPruwro0wcI,10460
62
+ wexample_filestate_python/utils/python_class_docstring_utils.py,sha256=8FE09IrpNv6cetzNo2ESMa64I46WP4ZJd-BbkqXHBAI,3221
63
+ wexample_filestate_python/utils/python_class_methods_utils.py,sha256=xEdG8kS4XXyF5LL-GxSmICJ1rKNKg_TGIl6tGoh2Ca8,8852
64
+ wexample_filestate_python/utils/python_constants_utils.py,sha256=KiGQ2WzjUWoOHrX0ZwCjfgbcLyywldlQbiroxuHhxkU,11482
65
+ wexample_filestate_python/utils/python_docstring_utils.py,sha256=Tt90kREGp7g0eYIKHq7kqv9iUxHUC8s8KoXWtC4nkrM,3496
66
+ wexample_filestate_python/utils/python_functions_utils.py,sha256=18rxpALQzICoMro40Hem87MvOIophdW3jYLph4v6DdA,7656
67
+ wexample_filestate_python/utils/python_iterable_utils.py,sha256=1MjsANPiQFt6E09NIjRkzisFzFM43xFbpO_z27EYGEE,4614
68
+ wexample_filestate_python/utils/python_main_guard_utils.py,sha256=a1qW5Fg1LLjiANmLVbervLcmbHM4ilIgdK8J6UDrldw,2864
69
+ wexample_filestate_python/utils/python_module_metadata_utils.py,sha256=kMj9vbbZwINBFN_wQCKlsXWv-bJzG8FDBCgkDd5r_KQ,4869
70
+ wexample_filestate_python/utils/python_type_checking_utils.py,sha256=MKtQxlOqo4GEj3Lb_hPuET6nAdHYiYyNaC8ErYlr6aI,4137
71
+ wexample_filestate_python/utils/relocate_imports/__init__.py,sha256=-puxa4HpFY3Bo0-e4G12DoYanVP81Rusi2BfWcwMENU,146
72
+ wexample_filestate_python/utils/relocate_imports/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ wexample_filestate_python/utils/relocate_imports/python_import_rewriter.py,sha256=kciVDwBM5gYxjRPVRrcNJzjzgqHGF_D5Pa5Cn7jtss0,16607
74
+ wexample_filestate_python/utils/relocate_imports/python_localize_runtime_imports.py,sha256=IukUuotXQ0Ju_667d20wxBt6GTWZ2paMAwOb7EKObhU,12778
75
+ wexample_filestate_python/utils/relocate_imports/python_parser_import_index.py,sha256=cETvE1Z35hV9uZdrn9Ck1MD7Gr-pNyJ4rRw7sbgEUQw,3575
76
+ wexample_filestate_python/utils/relocate_imports/python_runtime_symbol_collector.py,sha256=Vr87zZwFo2hRy8rwSQQaTymcyM2B6C4ZKa1e89Vi7Ko,1273
77
+ wexample_filestate_python/utils/relocate_imports/python_usage_collector.py,sha256=zzkJv1qcUoa0zVuhjYdU9WnCUoMdGcYOgALrCOUA9h0,19369
78
+ wexample_filestate_python/workdir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ wexample_filestate_python/workdir/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ wexample_filestate_python-0.0.48.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: pdm-backend (2.4.5)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+
3
+ [gui_scripts]
4
+