betterproto2-compiler 0.2.4__tar.gz → 0.3.0__tar.gz
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.
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/PKG-INFO +2 -2
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/pyproject.toml +4 -4
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/lib/google/protobuf/__init__.py +27 -27
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/lib/google/protobuf/compiler/__init__.py +1 -1
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/models.py +1 -1
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/templates/template.py.j2 +1 -1
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/LICENSE.md +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/README.md +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/__init__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/casing.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/compile/__init__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/compile/importing.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/compile/naming.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/known_types/__init__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/known_types/any.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/known_types/duration.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/known_types/timestamp.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/lib/__init__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/lib/google/__init__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/lib/message_pool.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/__init__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/__main__.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/compiler.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/main.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/module_validation.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/parser.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/plugin.bat +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/py.typed +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/settings.py +0 -0
- {betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/templates/header.py.j2 +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: betterproto2_compiler
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.0
|
4
4
|
Summary: Compiler for betterproto2
|
5
5
|
License: MIT
|
6
6
|
Keywords: protobuf,gRPC,compiler
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
16
|
-
Requires-Dist: betterproto2 (>=0.
|
16
|
+
Requires-Dist: betterproto2 (>=0.3.0,<0.4.0)
|
17
17
|
Requires-Dist: grpclib (>=0.4.1,<0.5.0)
|
18
18
|
Requires-Dist: jinja2 (>=3.0.3)
|
19
19
|
Requires-Dist: ruff (>=0.9.3,<0.10.0)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "betterproto2_compiler"
|
3
|
-
version = "0.
|
3
|
+
version = "0.3.0"
|
4
4
|
description = "Compiler for betterproto2"
|
5
5
|
authors = [
|
6
6
|
{ name = "Adrien Vannson", email = "adrien.vannson@protonmail.com" },
|
@@ -26,7 +26,7 @@ packages = [
|
|
26
26
|
|
27
27
|
[tool.poetry.dependencies]
|
28
28
|
python = "^3.10"
|
29
|
-
betterproto2 = "^0.
|
29
|
+
betterproto2 = "^0.3.0"
|
30
30
|
# betterproto2 = { git="https://github.com/betterproto/python-betterproto2" }
|
31
31
|
# The Ruff version is pinned. To update it, also update it in .pre-commit-config.yaml
|
32
32
|
ruff = "~0.9.3"
|
@@ -45,7 +45,7 @@ ipykernel = "^6.29.5"
|
|
45
45
|
|
46
46
|
[tool.poetry.group.test.dependencies]
|
47
47
|
pytest = "^8.3.4"
|
48
|
-
protobuf = "^
|
48
|
+
protobuf = "^5.29.3"
|
49
49
|
|
50
50
|
[tool.ruff]
|
51
51
|
extend-exclude = ["tests/output_*", "src/betterproto2_compiler/lib"]
|
@@ -148,7 +148,7 @@ cmd = "mkdocs serve"
|
|
148
148
|
help = "Serve the documentation locally"
|
149
149
|
|
150
150
|
[build-system]
|
151
|
-
requires = ["poetry-core>=
|
151
|
+
requires = ["poetry-core>=2.0.0,<3"]
|
152
152
|
build-backend = "poetry.core.masonry.api"
|
153
153
|
|
154
154
|
# python -m grpc.tools.protoc \
|
@@ -98,7 +98,7 @@ import betterproto2
|
|
98
98
|
|
99
99
|
from ...message_pool import default_message_pool
|
100
100
|
|
101
|
-
betterproto2.check_compiler_version("0.
|
101
|
+
betterproto2.check_compiler_version("0.3.0")
|
102
102
|
|
103
103
|
|
104
104
|
class Edition(betterproto2.Enum):
|
@@ -792,7 +792,7 @@ class Api(betterproto2.Message):
|
|
792
792
|
Included interfaces. See [Mixin][].
|
793
793
|
"""
|
794
794
|
|
795
|
-
syntax: "Syntax" = betterproto2.field(7, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax
|
795
|
+
syntax: "Syntax" = betterproto2.field(7, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax(0))
|
796
796
|
"""
|
797
797
|
The source syntax of the service.
|
798
798
|
"""
|
@@ -1082,7 +1082,7 @@ class Enum(betterproto2.Message):
|
|
1082
1082
|
The source context.
|
1083
1083
|
"""
|
1084
1084
|
|
1085
|
-
syntax: "Syntax" = betterproto2.field(5, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax
|
1085
|
+
syntax: "Syntax" = betterproto2.field(5, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax(0))
|
1086
1086
|
"""
|
1087
1087
|
The source syntax.
|
1088
1088
|
"""
|
@@ -1299,7 +1299,7 @@ class ExtensionRangeOptions(betterproto2.Message):
|
|
1299
1299
|
"""
|
1300
1300
|
|
1301
1301
|
verification: "ExtensionRangeOptionsVerificationState" = betterproto2.field(
|
1302
|
-
3, betterproto2.TYPE_ENUM, default_factory=lambda: ExtensionRangeOptionsVerificationState
|
1302
|
+
3, betterproto2.TYPE_ENUM, default_factory=lambda: ExtensionRangeOptionsVerificationState(0)
|
1303
1303
|
)
|
1304
1304
|
"""
|
1305
1305
|
The verification state of the range.
|
@@ -1365,27 +1365,27 @@ class FeatureSet(betterproto2.Message):
|
|
1365
1365
|
"""
|
1366
1366
|
|
1367
1367
|
field_presence: "FeatureSetFieldPresence" = betterproto2.field(
|
1368
|
-
1, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetFieldPresence
|
1368
|
+
1, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetFieldPresence(0)
|
1369
1369
|
)
|
1370
1370
|
|
1371
1371
|
enum_type: "FeatureSetEnumType" = betterproto2.field(
|
1372
|
-
2, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetEnumType
|
1372
|
+
2, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetEnumType(0)
|
1373
1373
|
)
|
1374
1374
|
|
1375
1375
|
repeated_field_encoding: "FeatureSetRepeatedFieldEncoding" = betterproto2.field(
|
1376
|
-
3, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetRepeatedFieldEncoding
|
1376
|
+
3, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetRepeatedFieldEncoding(0)
|
1377
1377
|
)
|
1378
1378
|
|
1379
1379
|
utf8_validation: "FeatureSetUtf8Validation" = betterproto2.field(
|
1380
|
-
4, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetUtf8Validation
|
1380
|
+
4, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetUtf8Validation(0)
|
1381
1381
|
)
|
1382
1382
|
|
1383
1383
|
message_encoding: "FeatureSetMessageEncoding" = betterproto2.field(
|
1384
|
-
5, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetMessageEncoding
|
1384
|
+
5, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetMessageEncoding(0)
|
1385
1385
|
)
|
1386
1386
|
|
1387
1387
|
json_format: "FeatureSetJsonFormat" = betterproto2.field(
|
1388
|
-
6, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetJsonFormat
|
1388
|
+
6, betterproto2.TYPE_ENUM, default_factory=lambda: FeatureSetJsonFormat(0)
|
1389
1389
|
)
|
1390
1390
|
|
1391
1391
|
|
@@ -1406,7 +1406,7 @@ class FeatureSetDefaults(betterproto2.Message):
|
|
1406
1406
|
)
|
1407
1407
|
|
1408
1408
|
minimum_edition: "Edition" = betterproto2.field(
|
1409
|
-
4, betterproto2.TYPE_ENUM, default_factory=lambda: Edition
|
1409
|
+
4, betterproto2.TYPE_ENUM, default_factory=lambda: Edition(0)
|
1410
1410
|
)
|
1411
1411
|
"""
|
1412
1412
|
The minimum supported edition (inclusive) when this was constructed.
|
@@ -1414,7 +1414,7 @@ class FeatureSetDefaults(betterproto2.Message):
|
|
1414
1414
|
"""
|
1415
1415
|
|
1416
1416
|
maximum_edition: "Edition" = betterproto2.field(
|
1417
|
-
5, betterproto2.TYPE_ENUM, default_factory=lambda: Edition
|
1417
|
+
5, betterproto2.TYPE_ENUM, default_factory=lambda: Edition(0)
|
1418
1418
|
)
|
1419
1419
|
"""
|
1420
1420
|
The maximum known edition (inclusive) when this was constructed. Editions
|
@@ -1434,7 +1434,7 @@ class FeatureSetDefaultsFeatureSetEditionDefault(betterproto2.Message):
|
|
1434
1434
|
be used. This field must be in strict ascending order by edition.
|
1435
1435
|
"""
|
1436
1436
|
|
1437
|
-
edition: "Edition" = betterproto2.field(3, betterproto2.TYPE_ENUM, default_factory=lambda: Edition
|
1437
|
+
edition: "Edition" = betterproto2.field(3, betterproto2.TYPE_ENUM, default_factory=lambda: Edition(0))
|
1438
1438
|
|
1439
1439
|
features: "Optional[FeatureSet]" = betterproto2.field(2, betterproto2.TYPE_MESSAGE, optional=True)
|
1440
1440
|
|
@@ -1450,13 +1450,13 @@ class Field(betterproto2.Message):
|
|
1450
1450
|
A single field of a message type.
|
1451
1451
|
"""
|
1452
1452
|
|
1453
|
-
kind: "FieldKind" = betterproto2.field(1, betterproto2.TYPE_ENUM, default_factory=lambda: FieldKind
|
1453
|
+
kind: "FieldKind" = betterproto2.field(1, betterproto2.TYPE_ENUM, default_factory=lambda: FieldKind(0))
|
1454
1454
|
"""
|
1455
1455
|
The field type.
|
1456
1456
|
"""
|
1457
1457
|
|
1458
1458
|
cardinality: "FieldCardinality" = betterproto2.field(
|
1459
|
-
2, betterproto2.TYPE_ENUM, default_factory=lambda: FieldCardinality
|
1459
|
+
2, betterproto2.TYPE_ENUM, default_factory=lambda: FieldCardinality(0)
|
1460
1460
|
)
|
1461
1461
|
"""
|
1462
1462
|
The field cardinality.
|
@@ -1519,11 +1519,11 @@ class FieldDescriptorProto(betterproto2.Message):
|
|
1519
1519
|
number: "int" = betterproto2.field(3, betterproto2.TYPE_INT32)
|
1520
1520
|
|
1521
1521
|
label: "FieldDescriptorProtoLabel" = betterproto2.field(
|
1522
|
-
4, betterproto2.TYPE_ENUM, default_factory=lambda: FieldDescriptorProtoLabel
|
1522
|
+
4, betterproto2.TYPE_ENUM, default_factory=lambda: FieldDescriptorProtoLabel(0)
|
1523
1523
|
)
|
1524
1524
|
|
1525
1525
|
type: "FieldDescriptorProtoType" = betterproto2.field(
|
1526
|
-
5, betterproto2.TYPE_ENUM, default_factory=lambda: FieldDescriptorProtoType
|
1526
|
+
5, betterproto2.TYPE_ENUM, default_factory=lambda: FieldDescriptorProtoType(0)
|
1527
1527
|
)
|
1528
1528
|
"""
|
1529
1529
|
If type_name is set, this need not be set. If both this and type_name
|
@@ -1813,7 +1813,7 @@ default_message_pool.register_message("google.protobuf", "FieldMask", FieldMask)
|
|
1813
1813
|
@dataclass(eq=False, repr=False)
|
1814
1814
|
class FieldOptions(betterproto2.Message):
|
1815
1815
|
ctype: "FieldOptionsCType" = betterproto2.field(
|
1816
|
-
1, betterproto2.TYPE_ENUM, default_factory=lambda: FieldOptionsCType
|
1816
|
+
1, betterproto2.TYPE_ENUM, default_factory=lambda: FieldOptionsCType(0)
|
1817
1817
|
)
|
1818
1818
|
"""
|
1819
1819
|
The ctype option instructs the C++ code generator to use a different
|
@@ -1836,7 +1836,7 @@ class FieldOptions(betterproto2.Message):
|
|
1836
1836
|
"""
|
1837
1837
|
|
1838
1838
|
jstype: "FieldOptionsJsType" = betterproto2.field(
|
1839
|
-
6, betterproto2.TYPE_ENUM, default_factory=lambda: FieldOptionsJsType
|
1839
|
+
6, betterproto2.TYPE_ENUM, default_factory=lambda: FieldOptionsJsType(0)
|
1840
1840
|
)
|
1841
1841
|
"""
|
1842
1842
|
The jstype option determines the JavaScript type used for values of the
|
@@ -1913,7 +1913,7 @@ class FieldOptions(betterproto2.Message):
|
|
1913
1913
|
"""
|
1914
1914
|
|
1915
1915
|
retention: "FieldOptionsOptionRetention" = betterproto2.field(
|
1916
|
-
17, betterproto2.TYPE_ENUM, default_factory=lambda: FieldOptionsOptionRetention
|
1916
|
+
17, betterproto2.TYPE_ENUM, default_factory=lambda: FieldOptionsOptionRetention(0)
|
1917
1917
|
)
|
1918
1918
|
|
1919
1919
|
targets: "List[FieldOptionsOptionTargetType]" = betterproto2.field(19, betterproto2.TYPE_ENUM, repeated=True)
|
@@ -1940,7 +1940,7 @@ default_message_pool.register_message("google.protobuf", "FieldOptions", FieldOp
|
|
1940
1940
|
|
1941
1941
|
@dataclass(eq=False, repr=False)
|
1942
1942
|
class FieldOptionsEditionDefault(betterproto2.Message):
|
1943
|
-
edition: "Edition" = betterproto2.field(3, betterproto2.TYPE_ENUM, default_factory=lambda: Edition
|
1943
|
+
edition: "Edition" = betterproto2.field(3, betterproto2.TYPE_ENUM, default_factory=lambda: Edition(0))
|
1944
1944
|
|
1945
1945
|
value: "str" = betterproto2.field(2, betterproto2.TYPE_STRING)
|
1946
1946
|
"""
|
@@ -2012,7 +2012,7 @@ class FileDescriptorProto(betterproto2.Message):
|
|
2012
2012
|
If `edition` is present, this value must be "editions".
|
2013
2013
|
"""
|
2014
2014
|
|
2015
|
-
edition: "Edition" = betterproto2.field(14, betterproto2.TYPE_ENUM, default_factory=lambda: Edition
|
2015
|
+
edition: "Edition" = betterproto2.field(14, betterproto2.TYPE_ENUM, default_factory=lambda: Edition(0))
|
2016
2016
|
"""
|
2017
2017
|
The edition of the proto file.
|
2018
2018
|
"""
|
@@ -2113,7 +2113,7 @@ class FileOptions(betterproto2.Message):
|
|
2113
2113
|
"""
|
2114
2114
|
|
2115
2115
|
optimize_for: "FileOptionsOptimizeMode" = betterproto2.field(
|
2116
|
-
9, betterproto2.TYPE_ENUM, default_factory=lambda: FileOptionsOptimizeMode
|
2116
|
+
9, betterproto2.TYPE_ENUM, default_factory=lambda: FileOptionsOptimizeMode(0)
|
2117
2117
|
)
|
2118
2118
|
|
2119
2119
|
go_package: "str" = betterproto2.field(11, betterproto2.TYPE_STRING)
|
@@ -2289,7 +2289,7 @@ class GeneratedCodeInfoAnnotation(betterproto2.Message):
|
|
2289
2289
|
"""
|
2290
2290
|
|
2291
2291
|
semantic: "GeneratedCodeInfoAnnotationSemantic" = betterproto2.field(
|
2292
|
-
5, betterproto2.TYPE_ENUM, default_factory=lambda: GeneratedCodeInfoAnnotationSemantic
|
2292
|
+
5, betterproto2.TYPE_ENUM, default_factory=lambda: GeneratedCodeInfoAnnotationSemantic(0)
|
2293
2293
|
)
|
2294
2294
|
|
2295
2295
|
|
@@ -2482,7 +2482,7 @@ class Method(betterproto2.Message):
|
|
2482
2482
|
Any metadata attached to the method.
|
2483
2483
|
"""
|
2484
2484
|
|
2485
|
-
syntax: "Syntax" = betterproto2.field(7, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax
|
2485
|
+
syntax: "Syntax" = betterproto2.field(7, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax(0))
|
2486
2486
|
"""
|
2487
2487
|
The source syntax of this method.
|
2488
2488
|
"""
|
@@ -2539,7 +2539,7 @@ class MethodOptions(betterproto2.Message):
|
|
2539
2539
|
"""
|
2540
2540
|
|
2541
2541
|
idempotency_level: "MethodOptionsIdempotencyLevel" = betterproto2.field(
|
2542
|
-
34, betterproto2.TYPE_ENUM, default_factory=lambda: MethodOptionsIdempotencyLevel
|
2542
|
+
34, betterproto2.TYPE_ENUM, default_factory=lambda: MethodOptionsIdempotencyLevel(0)
|
2543
2543
|
)
|
2544
2544
|
|
2545
2545
|
features: "Optional[FeatureSet]" = betterproto2.field(35, betterproto2.TYPE_MESSAGE, optional=True)
|
@@ -3162,7 +3162,7 @@ class Type(betterproto2.Message):
|
|
3162
3162
|
The source context.
|
3163
3163
|
"""
|
3164
3164
|
|
3165
|
-
syntax: "Syntax" = betterproto2.field(6, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax
|
3165
|
+
syntax: "Syntax" = betterproto2.field(6, betterproto2.TYPE_ENUM, default_factory=lambda: Syntax(0))
|
3166
3166
|
"""
|
3167
3167
|
The source syntax.
|
3168
3168
|
"""
|
@@ -320,7 +320,7 @@ class FieldCompiler(ProtoContentBase):
|
|
320
320
|
elif self.repeated:
|
321
321
|
args.append("repeated=True")
|
322
322
|
elif self.field_type == FieldType.TYPE_ENUM:
|
323
|
-
args.append(f"default_factory=lambda: {self.py_type}
|
323
|
+
args.append(f"default_factory=lambda: {self.py_type}(0)")
|
324
324
|
return args
|
325
325
|
|
326
326
|
@property
|
@@ -235,7 +235,7 @@ class {{ service.py_name }}Base(ServiceBase):
|
|
235
235
|
|
236
236
|
{% endfor %}
|
237
237
|
|
238
|
-
def __mapping__(self) -> "dict[str, grpclib.const.Handler":
|
238
|
+
def __mapping__(self) -> "dict[str, grpclib.const.Handler]":
|
239
239
|
return {
|
240
240
|
{% for method in service.methods %}
|
241
241
|
"{{ method.route }}": grpclib.const.Handler(
|
File without changes
|
File without changes
|
{betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/__init__.py
RENAMED
File without changes
|
{betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/casing.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/plugin/main.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/py.typed
RENAMED
File without changes
|
{betterproto2_compiler-0.2.4 → betterproto2_compiler-0.3.0}/src/betterproto2_compiler/settings.py
RENAMED
File without changes
|
File without changes
|