traia-iatp 0.1.29__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.

Potentially problematic release.


This version of traia-iatp might be problematic. Click here for more details.

Files changed (107) hide show
  1. traia_iatp/README.md +368 -0
  2. traia_iatp/__init__.py +54 -0
  3. traia_iatp/cli/__init__.py +5 -0
  4. traia_iatp/cli/main.py +483 -0
  5. traia_iatp/client/__init__.py +10 -0
  6. traia_iatp/client/a2a_client.py +274 -0
  7. traia_iatp/client/crewai_a2a_tools.py +335 -0
  8. traia_iatp/client/d402_a2a_client.py +293 -0
  9. traia_iatp/client/grpc_a2a_tools.py +349 -0
  10. traia_iatp/client/root_path_a2a_client.py +1 -0
  11. traia_iatp/contracts/__init__.py +12 -0
  12. traia_iatp/contracts/iatp_contracts_config.py +263 -0
  13. traia_iatp/contracts/wallet_creator.py +255 -0
  14. traia_iatp/core/__init__.py +43 -0
  15. traia_iatp/core/models.py +172 -0
  16. traia_iatp/d402/__init__.py +55 -0
  17. traia_iatp/d402/chains.py +102 -0
  18. traia_iatp/d402/client.py +150 -0
  19. traia_iatp/d402/clients/__init__.py +7 -0
  20. traia_iatp/d402/clients/base.py +218 -0
  21. traia_iatp/d402/clients/httpx.py +219 -0
  22. traia_iatp/d402/common.py +114 -0
  23. traia_iatp/d402/encoding.py +28 -0
  24. traia_iatp/d402/examples/client_example.py +197 -0
  25. traia_iatp/d402/examples/server_example.py +171 -0
  26. traia_iatp/d402/facilitator.py +453 -0
  27. traia_iatp/d402/fastapi_middleware/__init__.py +6 -0
  28. traia_iatp/d402/fastapi_middleware/middleware.py +225 -0
  29. traia_iatp/d402/fastmcp_middleware.py +147 -0
  30. traia_iatp/d402/mcp_middleware.py +434 -0
  31. traia_iatp/d402/middleware.py +193 -0
  32. traia_iatp/d402/models.py +116 -0
  33. traia_iatp/d402/networks.py +98 -0
  34. traia_iatp/d402/path.py +43 -0
  35. traia_iatp/d402/payment_introspection.py +104 -0
  36. traia_iatp/d402/payment_signing.py +178 -0
  37. traia_iatp/d402/paywall.py +119 -0
  38. traia_iatp/d402/starlette_middleware.py +326 -0
  39. traia_iatp/d402/template.py +1 -0
  40. traia_iatp/d402/types.py +300 -0
  41. traia_iatp/mcp/__init__.py +18 -0
  42. traia_iatp/mcp/client.py +201 -0
  43. traia_iatp/mcp/d402_mcp_tool_adapter.py +361 -0
  44. traia_iatp/mcp/mcp_agent_template.py +481 -0
  45. traia_iatp/mcp/templates/Dockerfile.j2 +80 -0
  46. traia_iatp/mcp/templates/README.md.j2 +310 -0
  47. traia_iatp/mcp/templates/cursor-rules.md.j2 +520 -0
  48. traia_iatp/mcp/templates/deployment_params.json.j2 +20 -0
  49. traia_iatp/mcp/templates/docker-compose.yml.j2 +32 -0
  50. traia_iatp/mcp/templates/dockerignore.j2 +47 -0
  51. traia_iatp/mcp/templates/env.example.j2 +57 -0
  52. traia_iatp/mcp/templates/gitignore.j2 +77 -0
  53. traia_iatp/mcp/templates/mcp_health_check.py.j2 +150 -0
  54. traia_iatp/mcp/templates/pyproject.toml.j2 +32 -0
  55. traia_iatp/mcp/templates/pyrightconfig.json.j2 +22 -0
  56. traia_iatp/mcp/templates/run_local_docker.sh.j2 +390 -0
  57. traia_iatp/mcp/templates/server.py.j2 +175 -0
  58. traia_iatp/mcp/traia_mcp_adapter.py +543 -0
  59. traia_iatp/preview_diagrams.html +181 -0
  60. traia_iatp/registry/__init__.py +26 -0
  61. traia_iatp/registry/atlas_search_indexes.json +280 -0
  62. traia_iatp/registry/embeddings.py +298 -0
  63. traia_iatp/registry/iatp_search_api.py +846 -0
  64. traia_iatp/registry/mongodb_registry.py +771 -0
  65. traia_iatp/registry/readmes/ATLAS_SEARCH_INDEXES.md +252 -0
  66. traia_iatp/registry/readmes/ATLAS_SEARCH_SETUP.md +134 -0
  67. traia_iatp/registry/readmes/AUTHENTICATION_UPDATE.md +124 -0
  68. traia_iatp/registry/readmes/EMBEDDINGS_SETUP.md +172 -0
  69. traia_iatp/registry/readmes/IATP_SEARCH_API_GUIDE.md +257 -0
  70. traia_iatp/registry/readmes/MONGODB_X509_AUTH.md +208 -0
  71. traia_iatp/registry/readmes/README.md +251 -0
  72. traia_iatp/registry/readmes/REFACTORING_SUMMARY.md +191 -0
  73. traia_iatp/scripts/__init__.py +2 -0
  74. traia_iatp/scripts/create_wallet.py +244 -0
  75. traia_iatp/server/__init__.py +15 -0
  76. traia_iatp/server/a2a_server.py +219 -0
  77. traia_iatp/server/example_template_usage.py +72 -0
  78. traia_iatp/server/iatp_server_agent_generator.py +237 -0
  79. traia_iatp/server/iatp_server_template_generator.py +235 -0
  80. traia_iatp/server/templates/.dockerignore.j2 +48 -0
  81. traia_iatp/server/templates/Dockerfile.j2 +49 -0
  82. traia_iatp/server/templates/README.md +137 -0
  83. traia_iatp/server/templates/README.md.j2 +425 -0
  84. traia_iatp/server/templates/__init__.py +1 -0
  85. traia_iatp/server/templates/__main__.py.j2 +565 -0
  86. traia_iatp/server/templates/agent.py.j2 +94 -0
  87. traia_iatp/server/templates/agent_config.json.j2 +22 -0
  88. traia_iatp/server/templates/agent_executor.py.j2 +279 -0
  89. traia_iatp/server/templates/docker-compose.yml.j2 +23 -0
  90. traia_iatp/server/templates/env.example.j2 +84 -0
  91. traia_iatp/server/templates/gitignore.j2 +78 -0
  92. traia_iatp/server/templates/grpc_server.py.j2 +218 -0
  93. traia_iatp/server/templates/pyproject.toml.j2 +78 -0
  94. traia_iatp/server/templates/run_local_docker.sh.j2 +103 -0
  95. traia_iatp/server/templates/server.py.j2 +243 -0
  96. traia_iatp/special_agencies/__init__.py +4 -0
  97. traia_iatp/special_agencies/registry_search_agency.py +392 -0
  98. traia_iatp/utils/__init__.py +10 -0
  99. traia_iatp/utils/docker_utils.py +251 -0
  100. traia_iatp/utils/general.py +64 -0
  101. traia_iatp/utils/iatp_utils.py +126 -0
  102. traia_iatp-0.1.29.dist-info/METADATA +423 -0
  103. traia_iatp-0.1.29.dist-info/RECORD +107 -0
  104. traia_iatp-0.1.29.dist-info/WHEEL +5 -0
  105. traia_iatp-0.1.29.dist-info/entry_points.txt +2 -0
  106. traia_iatp-0.1.29.dist-info/licenses/LICENSE +21 -0
  107. traia_iatp-0.1.29.dist-info/top_level.txt +1 -0
@@ -0,0 +1,107 @@
1
+ traia_iatp/README.md,sha256=Ry0X-sXiJ0Qi8WAq58mvUaazDqxIoV3ZvgpAoTtxSSU,10937
2
+ traia_iatp/__init__.py,sha256=SKvg7c_CpcpNIbvOvBQzextYHE9RPkPFvkrW1heIUfI,1547
3
+ traia_iatp/preview_diagrams.html,sha256=v5T6sAyA33b2DHib29WEa02wJq31UlvES9TFkKqrdMk,4708
4
+ traia_iatp/cli/__init__.py,sha256=nGgVg7pOjyIiWN5akKxqhKSHcpvU0VaDrH_vuhBEVcE,65
5
+ traia_iatp/cli/main.py,sha256=MmBZxz5tob80_zJMeROKue39V2yvOeCp-8qkzzmFw28,20391
6
+ traia_iatp/client/__init__.py,sha256=eo1oIMijV63WpklHEIftfoNWjEmhW4udcL7aIuZjf6M,259
7
+ traia_iatp/client/a2a_client.py,sha256=fJwcPC9vmuH6Q4QSDUDGFNZyx9QQvuR9pPtbgKavkiM,10116
8
+ traia_iatp/client/crewai_a2a_tools.py,sha256=m989j13d8Ba1SDDNXuprBA0W7pjXvVApcCJWsBNliTI,14363
9
+ traia_iatp/client/d402_a2a_client.py,sha256=uFpgmt0ICjGdyb9fSQiS3R5fuCPEKn5XEx2O_-SVNtI,10414
10
+ traia_iatp/client/grpc_a2a_tools.py,sha256=pVt6UASXdt096ZNfcTqY0pjaTqLr-0Ptl8xd68rxRWQ,13003
11
+ traia_iatp/client/root_path_a2a_client.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
12
+ traia_iatp/contracts/__init__.py,sha256=zpKoXremsETTWyMtH5ujS1k33ZUN2mk2I2BMIlf_CL0,316
13
+ traia_iatp/contracts/iatp_contracts_config.py,sha256=MnOYNVmVQPyz7PUuDsvbuVtTfezBtNy83-F1f8009ew,8285
14
+ traia_iatp/contracts/wallet_creator.py,sha256=CTDgnIbQY3iXDcNYSUSNgGRaFTaiC1_1totIxSGh9us,8961
15
+ traia_iatp/core/__init__.py,sha256=SdGs25MkNWok77wRtbCJFGkD85QAmYUAB40Fn9mHeXk,755
16
+ traia_iatp/core/models.py,sha256=F7EpB6fYvlhrhJgd8ni-gFIsL_r5Kc8uO2uWkpmjU1U,9174
17
+ traia_iatp/d402/__init__.py,sha256=xZmCNLZmkdv0bDW0S0fEXxdV6HnBxhZIeaJHQ8vRdj8,1561
18
+ traia_iatp/d402/chains.py,sha256=Fb8rBHzvrk6xHctOMO_e9-Ws0EKcIBAnwxRzw5fQCCE,3141
19
+ traia_iatp/d402/client.py,sha256=5DsxSgs2xUtIJYAphX65qg88q261rmIGvNHn0nQNRA0,5062
20
+ traia_iatp/d402/common.py,sha256=I330oSOcXq-GFsRrbZ3b6_AaszHaOYlBHrV3OSu32YA,3561
21
+ traia_iatp/d402/encoding.py,sha256=n-D5CevbJI7y0O_9OASOinB1vigYOOSU9RsWWSixMTk,633
22
+ traia_iatp/d402/facilitator.py,sha256=ARtj-AwhTgQkNPt6T1xKzqRCd3ysif0Xp3NBpPb5WEs,19652
23
+ traia_iatp/d402/fastmcp_middleware.py,sha256=l270MoumE51qY3hpHTvh-_tF5N9jLSlAmfAeiE2l-OA,6034
24
+ traia_iatp/d402/mcp_middleware.py,sha256=FIuo9dxPxyiWNpjuD_M2aT2tWAfub_AolJL7WX3rQIM,19989
25
+ traia_iatp/d402/middleware.py,sha256=54JYkotLjNWbetqRwWBRPQo5vfUZKtv0OUYH7HgpKz0,6806
26
+ traia_iatp/d402/models.py,sha256=POK7YMbO8E6v6U-269UzaHF0yVIwDma7clzArBlqpJA,4577
27
+ traia_iatp/d402/networks.py,sha256=ZKEtnf-pEfh0YKtNIBpmSlUaAusEzZrLZrYLBnTSPns,2963
28
+ traia_iatp/d402/path.py,sha256=G3oxm12FS1OsxXK_BPopS4bVCFrei5MOMnQAvDbgZsY,1311
29
+ traia_iatp/d402/payment_introspection.py,sha256=d5qzaLxku9GwHFkr3K9wZ5E4yA5PRmI4Z1runqCQkGQ,3861
30
+ traia_iatp/d402/payment_signing.py,sha256=YjJ4fUBOj0Od2w9EO7IlBKgrCpCSyi49KIZyVitx1TA,6950
31
+ traia_iatp/d402/paywall.py,sha256=Bvmph2gGR8Aysm7vPc3S8g3SKkCWpRXEgxP44Ck7zu0,3628
32
+ traia_iatp/d402/starlette_middleware.py,sha256=xan4YV26B6x9Is9xhtSkN5ecOhbhiIG4Vc_HgoomUOg,17852
33
+ traia_iatp/d402/template.py,sha256=5-k4KA2dJ88Qs8Z2n6gP9H6__-ihCZqaWWMi8WnHM54,2825264
34
+ traia_iatp/d402/types.py,sha256=bRi-rNAFIhbfYclOJ8RHs1RSFFEkFGCx7gVZuFxztHA,8190
35
+ traia_iatp/d402/clients/__init__.py,sha256=nC5qL6u35KDfK_NtGJdl8tvK7CQzyq8su4a6Kn2z9Ks,244
36
+ traia_iatp/d402/clients/base.py,sha256=_u3ass6j6RPupuV6QvsHqNunc1JXi9K1SZR9v1J-i1Y,8382
37
+ traia_iatp/d402/clients/httpx.py,sha256=7GmfQaPXcd3HDO4i5vCnR4lgJBq-3_5FtL6XKZ0BFhY,8944
38
+ traia_iatp/d402/examples/client_example.py,sha256=28l8L5wOrEZKfCdwJBoslAEmR2tQ-XMD2HpsYT82trs,6337
39
+ traia_iatp/d402/examples/server_example.py,sha256=Xt6BDp6yzVmFnGE6or_TppElKxt9d3XIVQCZ9e9l7w4,5101
40
+ traia_iatp/d402/fastapi_middleware/__init__.py,sha256=gLGaqsPvRkE2-CLH8maj-0lRn12Y0RAHzS0hdDa2fdg,117
41
+ traia_iatp/d402/fastapi_middleware/middleware.py,sha256=ltBlSY7CQU21--2SwE4TcmivXeSZN9pAzS94i4a_-8g,8810
42
+ traia_iatp/mcp/__init__.py,sha256=QMAqz4blmFuGBAbaPnu8hQVO2XP1ss2OHlol2Zk30ng,563
43
+ traia_iatp/mcp/client.py,sha256=IMw_fO36GcAa92zHOkCuJJquG9untnkgX6LPOtrN1lU,7859
44
+ traia_iatp/mcp/d402_mcp_tool_adapter.py,sha256=kG0Sux_7voEt9vzLkaA-jKr3yPAstwD3Q9maNFTkzwQ,13105
45
+ traia_iatp/mcp/mcp_agent_template.py,sha256=9GxJ__amhxtkZA99et97mpgJoCHH1yZWidjImnKGFlk,18968
46
+ traia_iatp/mcp/traia_mcp_adapter.py,sha256=m6DX51aVyagGGCoIOaD635IbOK2rMN5gFLXeOLut0E0,19518
47
+ traia_iatp/mcp/templates/Dockerfile.j2,sha256=zZqn8AXfK-jJs2j--gRtlxGj1kfy6dQwWEYzj3SO5ck,2491
48
+ traia_iatp/mcp/templates/README.md.j2,sha256=2Dw08k9KU8FQw-HUODQuXy6BPr4cab1u_Veg5_7_Oo4,9686
49
+ traia_iatp/mcp/templates/cursor-rules.md.j2,sha256=Kp1WF8BATC32KTRIWwonN8erm-0va7GFkmayG-Msvk8,18154
50
+ traia_iatp/mcp/templates/deployment_params.json.j2,sha256=Jr4xTXBdH2AbJWHGkghbsaVF1twQjCaLUCeGxGhhdMc,638
51
+ traia_iatp/mcp/templates/docker-compose.yml.j2,sha256=_KD3DGyiu-NKgUzHA1efS6Af_bCcw_c4jMeHqh-RHUM,1279
52
+ traia_iatp/mcp/templates/dockerignore.j2,sha256=EsXzYQ5Ku3NROEgmfv670VuSpla8_-tllblEE0Hp89Y,366
53
+ traia_iatp/mcp/templates/env.example.j2,sha256=l6I7-ueW5I4sTMKR8SYRsuMwzmAOk90cAzuFLAHG93I,2047
54
+ traia_iatp/mcp/templates/gitignore.j2,sha256=shz2n7MlRBOvwRm4leCjpxDi8r0bm8DJLAtvLcp6X_0,698
55
+ traia_iatp/mcp/templates/mcp_health_check.py.j2,sha256=s_7C1fUdApoto52HxX1BN2PNLaEnr00B9ZNw_bpcPDg,5234
56
+ traia_iatp/mcp/templates/pyproject.toml.j2,sha256=plRT6Gry1PsvER4A0bH66pa2A_WiaOWYZyQXy26bIC4,814
57
+ traia_iatp/mcp/templates/pyrightconfig.json.j2,sha256=mCDgat0oRlBJ0vAn0UV_mHRSmXddYp3TY61BWoqF0Bc,399
58
+ traia_iatp/mcp/templates/run_local_docker.sh.j2,sha256=3g6J8jkeyL737Vbst4hFSClfi2GkoC3qd7JknxslA28,15497
59
+ traia_iatp/mcp/templates/server.py.j2,sha256=c8B2qR_-cDpvgPEo4YaWBuQbv_AvOLbEcjPZZHi-Qgo,6222
60
+ traia_iatp/registry/__init__.py,sha256=YGFGRqgRp0f09ND-FWTG9GQNwxz-HpUBYbt_KhLP-ZY,662
61
+ traia_iatp/registry/atlas_search_indexes.json,sha256=_tXLH9us_AXonubuLKCX7uTDHuqw80u89E7Zt_tcdxI,6843
62
+ traia_iatp/registry/embeddings.py,sha256=LvmQvQFbOBEZsQkCotBRLZWAyWDNYddRjaF5Ir8XEHw,11224
63
+ traia_iatp/registry/iatp_search_api.py,sha256=leLCqtaFMLqcTr9ufqXip2KF1xVxN3ZWqbjlEGyoBVo,29313
64
+ traia_iatp/registry/mongodb_registry.py,sha256=oPj8UXsZrlQZL3YAxBHpw2xeY5Ogauo95m6fmk4dzbY,32579
65
+ traia_iatp/registry/readmes/ATLAS_SEARCH_INDEXES.md,sha256=vwYtLmqOfS-8f18CUc7D5z8meLl0O-GZ6n0cL1LXuy0,6049
66
+ traia_iatp/registry/readmes/ATLAS_SEARCH_SETUP.md,sha256=6fpFmRI-ZYOugK6wW2Y20odlivqhjZrNWcOIa3Smzpo,4782
67
+ traia_iatp/registry/readmes/AUTHENTICATION_UPDATE.md,sha256=sgj6xwd2XSW2AWLVUwEjZ6FME5XNtYEdvegp-AqdsUg,3525
68
+ traia_iatp/registry/readmes/EMBEDDINGS_SETUP.md,sha256=qxOOPCcwFTV4auSH6WrVPVW4_vcKFO0ymRAWe0rt1fc,5498
69
+ traia_iatp/registry/readmes/IATP_SEARCH_API_GUIDE.md,sha256=CO2jXeyHGKQ2MNldzN2pXvF0Culs-d5fsaqxgtu1ado,6943
70
+ traia_iatp/registry/readmes/MONGODB_X509_AUTH.md,sha256=VCKzHfklSN4kg-ycdkf2OQdpSh_2cLR8Mx9AyAHmIFo,5415
71
+ traia_iatp/registry/readmes/README.md,sha256=rb8XSQLUUqV-rpD0G7QLlWbvuse2wRXby-bJ4Pv23Iw,7178
72
+ traia_iatp/registry/readmes/REFACTORING_SUMMARY.md,sha256=DwnvOmtCb0kGcqBDR7R2EdpaGxh8z7GycxTyYP5msyA,6038
73
+ traia_iatp/scripts/__init__.py,sha256=pb_bi3iw605AJ2ucTw2huUQnlZPfJeKmvOrl6h6UA6o,29
74
+ traia_iatp/scripts/create_wallet.py,sha256=PZYrXFB0zGsAhMQmaae0SZ5Cfejj8sXzapbyYdT76G8,7207
75
+ traia_iatp/server/__init__.py,sha256=sh_tdZJhF1PO2GBTfPMy9UI4Dqz1TQBqnJTBNA68VgA,385
76
+ traia_iatp/server/a2a_server.py,sha256=lD9s3KSvwIpROL6QAHAg5Y_Rf7gOF6Nr1c75GJ9aitI,7854
77
+ traia_iatp/server/example_template_usage.py,sha256=5hiI9eOxvT0Cow6Khm63IHZIuadNDPDEVOHC94nR5Fc,2294
78
+ traia_iatp/server/iatp_server_agent_generator.py,sha256=uMVO9jODPXyLs6DxGSfhJl01N6l4_CShu88O3I9UZqQ,8880
79
+ traia_iatp/server/iatp_server_template_generator.py,sha256=AALMsYXITlHWC_UUOoBZe0qEOKBjIAgDYEIVJjHdbkc,9772
80
+ traia_iatp/server/templates/.dockerignore.j2,sha256=3XIuxSqhujKRc6-50tqiJ9jqW-b3A7sv-R7RlNGgOwM,388
81
+ traia_iatp/server/templates/Dockerfile.j2,sha256=gkP5HbuOTnJiX5XLN1oD1yoThPTWuYq5bYMNgwW-aNA,1196
82
+ traia_iatp/server/templates/README.md,sha256=wz1d0dhKvvHXyfTxM3QBDJJE-RdLN1yxCUQnpPmRAqs,5180
83
+ traia_iatp/server/templates/README.md.j2,sha256=yy7N99FQ2ZkS2I-O2_YO9_UmOP3mLGNI3vpKrIqjnig,10625
84
+ traia_iatp/server/templates/__init__.py,sha256=OfnDqxbgP51KEUSxFpfnePOF_72LlC00DOeR744ky4M,53
85
+ traia_iatp/server/templates/__main__.py.j2,sha256=eZGSFm2VhUy028CncJ1zblKO1WmObHLmBfvgIhfdvDU,23343
86
+ traia_iatp/server/templates/agent.py.j2,sha256=wlqyCrbG25YMZXF3RxdWbMRmCMdgYp9fWvYLoPpfWM8,3626
87
+ traia_iatp/server/templates/agent_config.json.j2,sha256=YGikrYXcVKZfZJP9OnlS-GJXaGExlaRN2DB_Lo5Pr7k,797
88
+ traia_iatp/server/templates/agent_executor.py.j2,sha256=SXYdtEY2ZW7Q0Csk41CdAgEUCna4dHBmicdm1_60dCk,11251
89
+ traia_iatp/server/templates/docker-compose.yml.j2,sha256=3jRkkUU6gazKyVgelfQRf6x0KRbpXINEsVkBIgqrQbc,610
90
+ traia_iatp/server/templates/env.example.j2,sha256=eoXZR0uvnS_qR-16KP7_ly1hPq6dTPaulNEQBNt_EH4,2394
91
+ traia_iatp/server/templates/gitignore.j2,sha256=rXu4kNnZUFgBDbLsburNohFVAjyE9xEeHbpEcqGGSB8,740
92
+ traia_iatp/server/templates/grpc_server.py.j2,sha256=GFZv0b146QthPDnBMEn2GpD8fRCfuCXzcq4RBEEGAac,7610
93
+ traia_iatp/server/templates/pyproject.toml.j2,sha256=FDynscwnsY4Gj6b6qbmyXuWcmaCj3i3f0ZwgRSfTfkg,1911
94
+ traia_iatp/server/templates/run_local_docker.sh.j2,sha256=4h1GGtwM8gsSDbChblsea2muS0MYXZtJwY4swso1PyI,3495
95
+ traia_iatp/server/templates/server.py.j2,sha256=Np5TZ9iB5Dz4a168PNbbwRO052es9oZ19sMqaIicEW0,8353
96
+ traia_iatp/special_agencies/__init__.py,sha256=9Uh0X8gjrAnl6yjmjGeCaxyJvB3HVwoOKhTc9ljmsr4,122
97
+ traia_iatp/special_agencies/registry_search_agency.py,sha256=wnWtyGPD4maZx2FYNhusZOC47FhlJkebk31w5CN8CH0,11225
98
+ traia_iatp/utils/__init__.py,sha256=D739Fc3KWPlAaPZ-3XM7uRvBAA7V8b4t6PBYJvMSsig,202
99
+ traia_iatp/utils/docker_utils.py,sha256=mPD09TPJKEe9SKjrR5E_o9z8xle-iCZq6JLzHZ6JXFk,8634
100
+ traia_iatp/utils/general.py,sha256=g6sRKzalBPwRWobBg3a7pz4eNIvvxv8RefoUNFdHm4o,1503
101
+ traia_iatp/utils/iatp_utils.py,sha256=RrGzk2ENvGIwuuMigOUrK5Yne0esl1r_K2P2iVygUgM,4680
102
+ traia_iatp-0.1.29.dist-info/licenses/LICENSE,sha256=R8vcu8GZdTTXF40sbOll11-FbarDm7_PiuaGzQp9whw,1065
103
+ traia_iatp-0.1.29.dist-info/METADATA,sha256=wwlmB3u4xEOQ959fOewsxM5my-6D68iPtJtC1e3axBo,13531
104
+ traia_iatp-0.1.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
105
+ traia_iatp-0.1.29.dist-info/entry_points.txt,sha256=K4p9Z2lBdPEybzXfed3JbUtrVHDdg60CRnJ178df7K0,55
106
+ traia_iatp-0.1.29.dist-info/top_level.txt,sha256=FozpD3vmZ4WP01hjSDUt5ENn0ttnIxxm1tPrTiIsyzI,11
107
+ traia_iatp-0.1.29.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ traia-iatp = traia_iatp.cli.main:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Traia.io
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ traia_iatp