adcp 2.11.0__py3-none-any.whl → 2.11.1__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.
adcp/__init__.py CHANGED
@@ -180,7 +180,7 @@ from adcp.validation import (
180
180
  validate_publisher_properties_item,
181
181
  )
182
182
 
183
- __version__ = "2.11.0"
183
+ __version__ = "2.11.1"
184
184
 
185
185
  __all__ = [
186
186
  # Client classes
adcp/types/__init__.py CHANGED
@@ -182,7 +182,6 @@ from adcp.types._generated import (
182
182
  StatusSummary,
183
183
  SyncCreativesRequest,
184
184
  SyncCreativesResponse,
185
- Tag,
186
185
  Tags,
187
186
  TargetingOverlay,
188
187
  Task,
@@ -426,7 +425,6 @@ __all__ = [
426
425
  "Results",
427
426
  "Signal",
428
427
  "SignalFilters",
429
- "Tag",
430
428
  "Tags",
431
429
  "TargetingOverlay",
432
430
  "VenueBreakdownItem",
adcp/types/_generated.py CHANGED
@@ -10,7 +10,7 @@ Auto-generated by datamodel-code-generator from JSON schemas.
10
10
  DO NOT EDIT MANUALLY.
11
11
 
12
12
  Generated from: https://github.com/adcontextprotocol/adcp/tree/main/schemas
13
- Generation date: 2025-11-21 15:57:17 UTC
13
+ Generation date: 2025-11-21 20:45:16 UTC
14
14
  """
15
15
  # ruff: noqa: E501, I001
16
16
  from __future__ import annotations
@@ -19,7 +19,7 @@ from __future__ import annotations
19
19
  from adcp.types.generated_poc.activate_signal_request import ActivateSignalRequest
20
20
  from adcp.types.generated_poc.activate_signal_response import ActivateSignalResponse, ActivateSignalResponse1, ActivateSignalResponse2
21
21
  from adcp.types.generated_poc.activation_key import ActivationKey1, ActivationKey2
22
- from adcp.types.generated_poc.adagents import AuthorizedAgents, AuthorizedAgents1, AuthorizedAgents2, AuthorizedAgents3, AuthorizedSalesAgents, Contact, PropertyId, PropertyTag, Tags
22
+ from adcp.types.generated_poc.adagents import AuthorizedAgents, AuthorizedAgents1, AuthorizedAgents2, AuthorizedAgents3, AuthorizedSalesAgents, Contact, Tags
23
23
  from adcp.types.generated_poc.adcp_domain import AdcpDomain
24
24
  from adcp.types.generated_poc.asset_content_type import AssetContentType
25
25
  from adcp.types.generated_poc.audio_asset import AudioAsset
@@ -104,7 +104,9 @@ from adcp.types.generated_poc.product import DeliveryMeasurement, Product, Produ
104
104
  from adcp.types.generated_poc.product_filters import ProductFilters
105
105
  from adcp.types.generated_poc.promoted_offerings import AssetSelectors, AssetType, Offering, PromotedOfferings
106
106
  from adcp.types.generated_poc.promoted_products import PromotedProducts
107
- from adcp.types.generated_poc.property import Identifier, Property, Tag
107
+ from adcp.types.generated_poc.property import Identifier, Property
108
+ from adcp.types.generated_poc.property_id import PropertyId
109
+ from adcp.types.generated_poc.property_tag import PropertyTag
108
110
  from adcp.types.generated_poc.property_type import PropertyType
109
111
  from adcp.types.generated_poc.protocol_envelope import ProtocolEnvelope
110
112
  from adcp.types.generated_poc.provide_performance_feedback_request import ProvidePerformanceFeedbackRequest, ProvidePerformanceFeedbackRequest1, ProvidePerformanceFeedbackRequest2
@@ -202,7 +204,7 @@ __all__ = [
202
204
  "SignalCatalogType", "SignalFilters", "Sort", "SortApplied", "SortDirection",
203
205
  "StandardFormatIds", "Status", "StatusSummary", "SubAsset1", "SubAsset2",
204
206
  "SyncCreativesRequest", "SyncCreativesResponse", "SyncCreativesResponse1",
205
- "SyncCreativesResponse2", "Tag", "Tags", "TargetingOverlay", "Task", "TaskStatus", "TaskType",
207
+ "SyncCreativesResponse2", "Tags", "TargetingOverlay", "Task", "TaskStatus", "TaskType",
206
208
  "TasksGetRequest", "TasksGetResponse", "TasksListRequest", "TasksListResponse", "TextAsset",
207
209
  "Totals", "Type", "UpdateFrequency", "UpdateMediaBuyRequest", "UpdateMediaBuyRequest1",
208
210
  "UpdateMediaBuyRequest2", "UpdateMediaBuyResponse", "UpdateMediaBuyResponse1",
@@ -1,75 +1,15 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: adagents.json
3
- # timestamp: 2025-11-19T02:02:39+00:00
3
+ # timestamp: 2025-11-21T20:45:16+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
7
  from typing import Annotated, Literal
8
8
 
9
9
  from adcp.types.base import AdCPBaseModel
10
- from pydantic import AnyUrl, AwareDatetime, ConfigDict, EmailStr, Field, RootModel
10
+ from pydantic import AnyUrl, AwareDatetime, ConfigDict, EmailStr, Field
11
11
 
12
- from . import property, publisher_property_selector
13
-
14
-
15
- class PropertyId(RootModel[str]):
16
- root: Annotated[str, Field(pattern='^[a-z0-9_]+$')]
17
-
18
-
19
- class AuthorizedAgents(AdCPBaseModel):
20
- model_config = ConfigDict(
21
- extra='forbid',
22
- )
23
- authorization_type: Annotated[
24
- Literal['property_ids'],
25
- Field(description='Discriminator indicating authorization by specific property IDs'),
26
- ]
27
- authorized_for: Annotated[
28
- str,
29
- Field(
30
- description='Human-readable description of what this agent is authorized to sell',
31
- max_length=500,
32
- min_length=1,
33
- ),
34
- ]
35
- property_ids: Annotated[
36
- list[PropertyId],
37
- Field(
38
- description='Property IDs this agent is authorized for. Resolved against the top-level properties array in this file',
39
- min_length=1,
40
- ),
41
- ]
42
- url: Annotated[AnyUrl, Field(description="The authorized agent's API endpoint URL")]
43
-
44
-
45
- class PropertyTag(PropertyId):
46
- pass
47
-
48
-
49
- class AuthorizedAgents1(AdCPBaseModel):
50
- model_config = ConfigDict(
51
- extra='forbid',
52
- )
53
- authorization_type: Annotated[
54
- Literal['property_tags'],
55
- Field(description='Discriminator indicating authorization by property tags'),
56
- ]
57
- authorized_for: Annotated[
58
- str,
59
- Field(
60
- description='Human-readable description of what this agent is authorized to sell',
61
- max_length=500,
62
- min_length=1,
63
- ),
64
- ]
65
- property_tags: Annotated[
66
- list[PropertyTag],
67
- Field(
68
- description='Tags identifying which properties this agent is authorized for. Resolved against the top-level properties array in this file using tag matching',
69
- min_length=1,
70
- ),
71
- ]
72
- url: Annotated[AnyUrl, Field(description="The authorized agent's API endpoint URL")]
12
+ from . import property, property_id, property_tag, publisher_property_selector
73
13
 
74
14
 
75
15
  class Contact(AdCPBaseModel):
@@ -125,6 +65,58 @@ class Tags(AdCPBaseModel):
125
65
  name: Annotated[str, Field(description='Human-readable name for this tag')]
126
66
 
127
67
 
68
+ class AuthorizedAgents(AdCPBaseModel):
69
+ model_config = ConfigDict(
70
+ extra='forbid',
71
+ )
72
+ authorization_type: Annotated[
73
+ Literal['property_ids'],
74
+ Field(description='Discriminator indicating authorization by specific property IDs'),
75
+ ]
76
+ authorized_for: Annotated[
77
+ str,
78
+ Field(
79
+ description='Human-readable description of what this agent is authorized to sell',
80
+ max_length=500,
81
+ min_length=1,
82
+ ),
83
+ ]
84
+ property_ids: Annotated[
85
+ list[property_id.PropertyId],
86
+ Field(
87
+ description='Property IDs this agent is authorized for. Resolved against the top-level properties array in this file',
88
+ min_length=1,
89
+ ),
90
+ ]
91
+ url: Annotated[AnyUrl, Field(description="The authorized agent's API endpoint URL")]
92
+
93
+
94
+ class AuthorizedAgents1(AdCPBaseModel):
95
+ model_config = ConfigDict(
96
+ extra='forbid',
97
+ )
98
+ authorization_type: Annotated[
99
+ Literal['property_tags'],
100
+ Field(description='Discriminator indicating authorization by property tags'),
101
+ ]
102
+ authorized_for: Annotated[
103
+ str,
104
+ Field(
105
+ description='Human-readable description of what this agent is authorized to sell',
106
+ max_length=500,
107
+ min_length=1,
108
+ ),
109
+ ]
110
+ property_tags: Annotated[
111
+ list[property_tag.PropertyTag],
112
+ Field(
113
+ description='Tags identifying which properties this agent is authorized for. Resolved against the top-level properties array in this file using tag matching',
114
+ min_length=1,
115
+ ),
116
+ ]
117
+ url: Annotated[AnyUrl, Field(description="The authorized agent's API endpoint URL")]
118
+
119
+
128
120
  class AuthorizedAgents2(AdCPBaseModel):
129
121
  model_config = ConfigDict(
130
122
  extra='forbid',
@@ -1,15 +1,15 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: property.json
3
- # timestamp: 2025-11-21T12:49:05+00:00
3
+ # timestamp: 2025-11-21T20:45:16+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
7
  from typing import Annotated
8
8
 
9
9
  from adcp.types.base import AdCPBaseModel
10
- from pydantic import ConfigDict, Field, RootModel
10
+ from pydantic import ConfigDict, Field
11
11
 
12
- from . import identifier_types
12
+ from . import identifier_types, property_tag
13
13
  from . import property_type as property_type_1
14
14
 
15
15
 
@@ -29,16 +29,6 @@ class Identifier(AdCPBaseModel):
29
29
  ]
30
30
 
31
31
 
32
- class Tag(RootModel[str]):
33
- root: Annotated[
34
- str,
35
- Field(
36
- description="Lowercase tag with underscores (e.g., 'conde_nast_network', 'premium_content')",
37
- pattern='^[a-z0-9_]+$',
38
- ),
39
- ]
40
-
41
-
42
32
  class Property(AdCPBaseModel):
43
33
  model_config = ConfigDict(
44
34
  extra='forbid',
@@ -50,8 +40,10 @@ class Property(AdCPBaseModel):
50
40
  property_id: Annotated[
51
41
  str | None,
52
42
  Field(
53
- description="Unique identifier for this property (optional). Enables referencing properties by ID instead of repeating full objects. Recommended format: lowercase with underscores (e.g., 'cnn_ctv_app', 'instagram_mobile')",
43
+ description='Unique identifier for this property (optional). Enables referencing properties by ID instead of repeating full objects.',
44
+ examples=['cnn_ctv_app', 'homepage', 'mobile_ios', 'instagram'],
54
45
  pattern='^[a-z0-9_]+$',
46
+ title='Property ID',
55
47
  ),
56
48
  ] = None
57
49
  property_type: Annotated[
@@ -64,7 +56,7 @@ class Property(AdCPBaseModel):
64
56
  ),
65
57
  ] = None
66
58
  tags: Annotated[
67
- list[Tag] | None,
59
+ list[property_tag.PropertyTag] | None,
68
60
  Field(
69
61
  description='Tags for categorization and grouping (e.g., network membership, content categories)'
70
62
  ),
@@ -0,0 +1,21 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: property-id.json
3
+ # timestamp: 2025-11-21T20:45:16+00:00
4
+
5
+ from __future__ import annotations
6
+
7
+ from typing import Annotated
8
+
9
+ from pydantic import Field, RootModel
10
+
11
+
12
+ class PropertyId(RootModel[str]):
13
+ root: Annotated[
14
+ str,
15
+ Field(
16
+ description='Identifier for a publisher property. Must be lowercase alphanumeric with underscores only.',
17
+ examples=['cnn_ctv_app', 'homepage', 'mobile_ios', 'instagram'],
18
+ pattern='^[a-z0-9_]+$',
19
+ title='Property ID',
20
+ ),
21
+ ]
@@ -0,0 +1,21 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: property-tag.json
3
+ # timestamp: 2025-11-21T20:45:16+00:00
4
+
5
+ from __future__ import annotations
6
+
7
+ from typing import Annotated
8
+
9
+ from pydantic import Field, RootModel
10
+
11
+
12
+ class PropertyTag(RootModel[str]):
13
+ root: Annotated[
14
+ str,
15
+ Field(
16
+ description='Tag for categorizing publisher properties. Must be lowercase alphanumeric with underscores only.',
17
+ examples=['ctv', 'premium', 'news', 'sports', 'meta_network', 'social_media'],
18
+ pattern='^[a-z0-9_]+$',
19
+ title='Property Tag',
20
+ ),
21
+ ]
@@ -1,13 +1,15 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: publisher-property-selector.json
3
- # timestamp: 2025-11-19T02:02:39+00:00
3
+ # timestamp: 2025-11-21T20:45:16+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
7
  from typing import Annotated, Literal
8
8
 
9
9
  from adcp.types.base import AdCPBaseModel
10
- from pydantic import ConfigDict, Field, RootModel
10
+ from pydantic import ConfigDict, Field
11
+
12
+ from . import property_id, property_tag
11
13
 
12
14
 
13
15
  class PublisherPropertySelector1(AdCPBaseModel):
@@ -29,16 +31,12 @@ class PublisherPropertySelector1(AdCPBaseModel):
29
31
  ]
30
32
 
31
33
 
32
- class PropertyId(RootModel[str]):
33
- root: Annotated[str, Field(pattern='^[a-z0-9_]+$')]
34
-
35
-
36
34
  class PublisherPropertySelector2(AdCPBaseModel):
37
35
  model_config = ConfigDict(
38
36
  extra='forbid',
39
37
  )
40
38
  property_ids: Annotated[
41
- list[PropertyId],
39
+ list[property_id.PropertyId],
42
40
  Field(description="Specific property IDs from the publisher's adagents.json", min_length=1),
43
41
  ]
44
42
  publisher_domain: Annotated[
@@ -54,16 +52,12 @@ class PublisherPropertySelector2(AdCPBaseModel):
54
52
  ]
55
53
 
56
54
 
57
- class PropertyTag(PropertyId):
58
- pass
59
-
60
-
61
55
  class PublisherPropertySelector3(AdCPBaseModel):
62
56
  model_config = ConfigDict(
63
57
  extra='forbid',
64
58
  )
65
59
  property_tags: Annotated[
66
- list[PropertyTag],
60
+ list[property_tag.PropertyTag],
67
61
  Field(
68
62
  description="Property tags from the publisher's adagents.json. Selector covers all properties with these tags",
69
63
  min_length=1,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: adcp
3
- Version: 2.11.0
3
+ Version: 2.11.1
4
4
  Summary: Official Python client for the Ad Context Protocol (AdCP)
5
5
  Author-email: AdCP Community <maintainers@adcontextprotocol.org>
6
6
  License: Apache-2.0
@@ -1,4 +1,4 @@
1
- adcp/__init__.py,sha256=HMkdbI-XxowS6MMTbG_KjRzomGZzz7g-ToSk5CtBPLo,9291
1
+ adcp/__init__.py,sha256=mNqhPUQ1jWRKllG1HHCnvH9olOxFdzsxtAcbGLwTM5E,9291
2
2
  adcp/__main__.py,sha256=HVsuiixW-PesPtBlG1Pofot7svrl2KdSFDFLoBxxUPo,14198
3
3
  adcp/adagents.py,sha256=o-vTBmdZvu9aER-TAlLLL3s-WGYY8N67jnrAH24lST8,22333
4
4
  adcp/client.py,sha256=t-UBwLhpmyodYON2MiH59NPsNQtts0d7c6XrExbEzhU,36603
@@ -13,8 +13,8 @@ adcp/protocols/base.py,sha256=5nbC6hS4_eTh1WziR6Mr957UoSoEc1S9eLY79lYZ2xQ,5651
13
13
  adcp/protocols/mcp.py,sha256=TA7n2tlaBi3VDV898ZUGZXFe4ADbfGXpdF71BgfanZ8,17190
14
14
  adcp/testing/__init__.py,sha256=ZWp_floWjVZfy8RBG5v_FUXQ8YbN7xjXvVcX-_zl_HU,1416
15
15
  adcp/testing/test_helpers.py,sha256=-UKuxxyKQald5EvXxguQH34b3J0JdsxKH_nRT6GTjkQ,10029
16
- adcp/types/__init__.py,sha256=DEeNKPqyDrE7AZc8F8RLuNS53SNmMwDNg35KfdKVzV8,14009
17
- adcp/types/_generated.py,sha256=xNug0pyHPj39moWfs6VMRk1Q2RNT8j87-JGecr-YET4,17209
16
+ adcp/types/__init__.py,sha256=qu1wMUvZubd98gtXg1mzSp74wR6MJvYBW5D04D0IyXk,13989
17
+ adcp/types/_generated.py,sha256=v0vYLA5ifAutdy4IubvMs-19iZxXSh2aG6XGdd7bBzw,17294
18
18
  adcp/types/aliases.py,sha256=GgUsokii7GcngnRTtLVD_r8dWTSDJcmXNj3YnGnvc7o,25150
19
19
  adcp/types/base.py,sha256=QoEuVfI4yzefup0dc2KN11AcJTbcGxRep7xOw5hXfs8,837
20
20
  adcp/types/core.py,sha256=RXkKCWCXS9BVJTNpe3Opm5O1I_LaQPMUuVwa-ipvS1Q,4839
@@ -22,7 +22,7 @@ adcp/types/generated_poc/__init__.py,sha256=bgFFvPK1-e04eOnyw0qmtVMzoA2V7GeAMPDV
22
22
  adcp/types/generated_poc/activate_signal_request.py,sha256=SxfyRH0jC_bdZi2jFFn997pwUszmCdBhJd5rX_jXG00,1192
23
23
  adcp/types/generated_poc/activate_signal_response.py,sha256=HrGvcNMrzl1o9lfX5c6kGopsjt-XLjvmxKFmt7iS_k4,2021
24
24
  adcp/types/generated_poc/activation_key.py,sha256=FFUHvn-q0zKMdImOv-VHKS_78U8FVikUE8M-IOuiamg,952
25
- adcp/types/generated_poc/adagents.py,sha256=tuMLnT5RRwVFCe8otpHugkz33a3IS3naLUCHUgxvk9c,7192
25
+ adcp/types/generated_poc/adagents.py,sha256=nC3PGd8l2Ut5woDzI5C90gNWMyjOTik9q3YZvqxEMLs,7099
26
26
  adcp/types/generated_poc/adcp_domain.py,sha256=0atBPrLOBn6TDdHezqT5BG_crq1S2HEIdJxvrQnx5fA,244
27
27
  adcp/types/generated_poc/asset_content_type.py,sha256=EERNQS3XQofgGNSa_JFaqcFVX-1m_N6mFEC9agLMg7I,497
28
28
  adcp/types/generated_poc/audio_asset.py,sha256=gu1HQI0310qmY27OzHzBD_gPTPYJv7GzCDgrEymZJ-k,795
@@ -110,13 +110,15 @@ adcp/types/generated_poc/product.py,sha256=QRgqTw0ABkDSrMy_IpNfawY2xBDH57zGniteB
110
110
  adcp/types/generated_poc/product_filters.py,sha256=id6HTSVedMxw_sQC-KQCCIVd9ajfkxdv_WKyiLR49TM,1216
111
111
  adcp/types/generated_poc/promoted_offerings.py,sha256=R5a551tIy43kZ2BUk-Lktu0t5hXLJfcNZWLHNDBgXp0,3223
112
112
  adcp/types/generated_poc/promoted_products.py,sha256=kdPVuzMgOCsHjQiW6YIg9AYriLAFqTFYd-4oDEmEexM,1252
113
- adcp/types/generated_poc/property.py,sha256=_1ACAHZBoR-6oTBlqrLzm1uOdkjnupqveiQaxf2YJlY,2410
113
+ adcp/types/generated_poc/property.py,sha256=wW063qVOdhTjhzlin0xL_--NdpvTJdVoAntaQCW-C_E,2218
114
+ adcp/types/generated_poc/property_id.py,sha256=ovLwFk4vzNa5MIixsZMKfcMnbTGtL1ORNxkX-kF8Vb8,578
115
+ adcp/types/generated_poc/property_tag.py,sha256=EhQY0KE0C6AGOrf0KWoKCUCk8BCNMYvtW9DaaiDLdPk,601
114
116
  adcp/types/generated_poc/property_type.py,sha256=tMcQAkvpoeLdFHATQkTDrulBuDR-xzrgH-5Lol9sR9I,376
115
117
  adcp/types/generated_poc/protocol_envelope.py,sha256=4XAHgtypta00roZnzsAhfVu1n_hsQ94T6RWzY9CVNFM,2715
116
118
  adcp/types/generated_poc/provide_performance_feedback_request.py,sha256=XFAMmBgoOgaIdFNzIbVi9J3jx_b-tsPONWoaLDv74H8,4735
117
119
  adcp/types/generated_poc/provide_performance_feedback_response.py,sha256=6eVf1r8O_8PPBOXdB1w_7JdZUPkPvip7WVIMsANqoGI,1973
118
120
  adcp/types/generated_poc/publisher_identifier_types.py,sha256=CctG8XQRfR1wtxo9bCCuU4oGZ8UoTa87FE0R-kPxYy0,321
119
- adcp/types/generated_poc/publisher_property_selector.py,sha256=QgxN9jiS9dExTYzLKYsdndDVFXfbLONxcz5Q6xbJhtM,2424
121
+ adcp/types/generated_poc/publisher_property_selector.py,sha256=Qf6wdZAC9iNKhbzIUG5b3z5tJZEniBIa39RaUftdkjE,2345
120
122
  adcp/types/generated_poc/push_notification_config.py,sha256=MTg_Dn-Fn2j5KyZuwxUSRCkfHGwU8SI4YNaZhQTXvMc,1687
121
123
  adcp/types/generated_poc/reporting_capabilities.py,sha256=N1mmWrnPK1PvYOo8usfgSALXfuj1LorD0AFabyeqzok,1748
122
124
  adcp/types/generated_poc/reporting_frequency.py,sha256=_Ru3tGKRuKK4dsiUT6hEKagWQT9izU77RgtrH50O5PY,274
@@ -156,9 +158,9 @@ adcp/utils/__init__.py,sha256=uetvSJB19CjQbtwEYZiTnumJG11GsafQmXm5eR3hL7E,153
156
158
  adcp/utils/operation_id.py,sha256=wQX9Bb5epXzRq23xoeYPTqzu5yLuhshg7lKJZihcM2k,294
157
159
  adcp/utils/preview_cache.py,sha256=eRyYiHlxii2LRMAv9WuAy2JCM1EMb2QwDdVSY3CYrWk,18456
158
160
  adcp/utils/response_parser.py,sha256=uPk2vIH-RYZmq7y3i8lC4HTMQ3FfKdlgXKTjgJ1955M,6253
159
- adcp-2.11.0.dist-info/licenses/LICENSE,sha256=PF39NR3Ae8PLgBhg3Uxw6ju7iGVIf8hfv9LRWQdii_U,629
160
- adcp-2.11.0.dist-info/METADATA,sha256=teGInPfeA7Qlm6zK7CsVnqNYTw6WdW1cjxOCoUNQjAM,31358
161
- adcp-2.11.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
162
- adcp-2.11.0.dist-info/entry_points.txt,sha256=DQKpcGsJX8DtVI_SGApQ7tNvqUB4zkTLaTAEpFgmi3U,44
163
- adcp-2.11.0.dist-info/top_level.txt,sha256=T1_NF0GefncFU9v_k56oDwKSJREyCqIM8lAwNZf0EOs,5
164
- adcp-2.11.0.dist-info/RECORD,,
161
+ adcp-2.11.1.dist-info/licenses/LICENSE,sha256=PF39NR3Ae8PLgBhg3Uxw6ju7iGVIf8hfv9LRWQdii_U,629
162
+ adcp-2.11.1.dist-info/METADATA,sha256=zAuaEDLtGT7KFMUmGgBGHQx7A_pVjjmTdj2Pn1D3PTw,31358
163
+ adcp-2.11.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
164
+ adcp-2.11.1.dist-info/entry_points.txt,sha256=DQKpcGsJX8DtVI_SGApQ7tNvqUB4zkTLaTAEpFgmi3U,44
165
+ adcp-2.11.1.dist-info/top_level.txt,sha256=T1_NF0GefncFU9v_k56oDwKSJREyCqIM8lAwNZf0EOs,5
166
+ adcp-2.11.1.dist-info/RECORD,,
File without changes