projen-modules 0.0.8__py3-none-any.whl → 0.0.9__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.
- projen_modules/__init__.py +57 -0
- projen_modules/_jsii/__init__.py +1 -1
- projen_modules/_jsii/projen-modules@0.0.9.jsii.tgz +0 -0
- {projen_modules-0.0.8.dist-info → projen_modules-0.0.9.dist-info}/METADATA +1 -1
- projen_modules-0.0.9.dist-info/RECORD +9 -0
- projen_modules/_jsii/projen-modules@0.0.8.jsii.tgz +0 -0
- projen_modules-0.0.8.dist-info/RECORD +0 -9
- {projen_modules-0.0.8.dist-info → projen_modules-0.0.9.dist-info}/LICENSE +0 -0
- {projen_modules-0.0.8.dist-info → projen_modules-0.0.9.dist-info}/WHEEL +0 -0
- {projen_modules-0.0.8.dist-info → projen_modules-0.0.9.dist-info}/top_level.txt +0 -0
projen_modules/__init__.py
CHANGED
@@ -36,6 +36,7 @@ class JsiiProject(
|
|
36
36
|
def __init__(
|
37
37
|
self,
|
38
38
|
*,
|
39
|
+
code_owners: typing.Sequence[builtins.str],
|
39
40
|
author: builtins.str,
|
40
41
|
author_address: builtins.str,
|
41
42
|
repository_url: builtins.str,
|
@@ -199,6 +200,7 @@ class JsiiProject(
|
|
199
200
|
renovatebot_options: typing.Optional[typing.Union[_projen_04054675.RenovatebotOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
200
201
|
) -> None:
|
201
202
|
'''
|
203
|
+
:param code_owners: List of teams used to generate the CODEOWNERS file. Default: []
|
202
204
|
:param author: (experimental) The name of the library author. Default: $GIT_USER_NAME
|
203
205
|
:param author_address: (experimental) Email or URL of the library author. Default: $GIT_USER_EMAIL
|
204
206
|
:param repository_url: (experimental) Git repository URL. Default: $GIT_REMOTE
|
@@ -362,6 +364,7 @@ class JsiiProject(
|
|
362
364
|
:param renovatebot_options: (experimental) Options for renovatebot. Default: - default options
|
363
365
|
'''
|
364
366
|
options = JsiiProjectOptions(
|
367
|
+
code_owners=code_owners,
|
365
368
|
author=author,
|
366
369
|
author_address=author_address,
|
367
370
|
repository_url=repository_url,
|
@@ -693,6 +696,7 @@ class JsiiProject(
|
|
693
696
|
"publish_to_pypi": "publishToPypi",
|
694
697
|
"python": "python",
|
695
698
|
"rootdir": "rootdir",
|
699
|
+
"code_owners": "codeOwners",
|
696
700
|
},
|
697
701
|
)
|
698
702
|
class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
|
@@ -860,6 +864,7 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
|
|
860
864
|
publish_to_pypi: typing.Optional[typing.Union[_projen_cdk_04054675.JsiiPythonTarget, typing.Dict[builtins.str, typing.Any]]] = None,
|
861
865
|
python: typing.Optional[typing.Union[_projen_cdk_04054675.JsiiPythonTarget, typing.Dict[builtins.str, typing.Any]]] = None,
|
862
866
|
rootdir: typing.Optional[builtins.str] = None,
|
867
|
+
code_owners: typing.Sequence[builtins.str],
|
863
868
|
) -> None:
|
864
869
|
'''
|
865
870
|
:param name: (experimental) This is the name of your project. Default: $BASEDIR
|
@@ -1023,6 +1028,7 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
|
|
1023
1028
|
:param publish_to_pypi: (experimental) Publish to pypi. Default: - no publishing
|
1024
1029
|
:param python:
|
1025
1030
|
:param rootdir: Default: "."
|
1031
|
+
:param code_owners: List of teams used to generate the CODEOWNERS file. Default: []
|
1026
1032
|
'''
|
1027
1033
|
if isinstance(git_ignore_options, dict):
|
1028
1034
|
git_ignore_options = _projen_04054675.IgnoreFileOptions(**git_ignore_options)
|
@@ -1261,12 +1267,14 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
|
|
1261
1267
|
check_type(argname="argument publish_to_pypi", value=publish_to_pypi, expected_type=type_hints["publish_to_pypi"])
|
1262
1268
|
check_type(argname="argument python", value=python, expected_type=type_hints["python"])
|
1263
1269
|
check_type(argname="argument rootdir", value=rootdir, expected_type=type_hints["rootdir"])
|
1270
|
+
check_type(argname="argument code_owners", value=code_owners, expected_type=type_hints["code_owners"])
|
1264
1271
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
1265
1272
|
"name": name,
|
1266
1273
|
"default_release_branch": default_release_branch,
|
1267
1274
|
"author": author,
|
1268
1275
|
"author_address": author_address,
|
1269
1276
|
"repository_url": repository_url,
|
1277
|
+
"code_owners": code_owners,
|
1270
1278
|
}
|
1271
1279
|
if commit_generated is not None:
|
1272
1280
|
self._values["commit_generated"] = commit_generated
|
@@ -3588,6 +3596,16 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
|
|
3588
3596
|
result = self._values.get("rootdir")
|
3589
3597
|
return typing.cast(typing.Optional[builtins.str], result)
|
3590
3598
|
|
3599
|
+
@builtins.property
|
3600
|
+
def code_owners(self) -> typing.List[builtins.str]:
|
3601
|
+
'''List of teams used to generate the CODEOWNERS file.
|
3602
|
+
|
3603
|
+
:default: []
|
3604
|
+
'''
|
3605
|
+
result = self._values.get("code_owners")
|
3606
|
+
assert result is not None, "Required property 'code_owners' is missing"
|
3607
|
+
return typing.cast(typing.List[builtins.str], result)
|
3608
|
+
|
3591
3609
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
3592
3610
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
3593
3611
|
|
@@ -3608,6 +3626,7 @@ class NpmPackage(
|
|
3608
3626
|
def __init__(
|
3609
3627
|
self,
|
3610
3628
|
*,
|
3629
|
+
code_owners: typing.Sequence[builtins.str],
|
3611
3630
|
disable_tsconfig: typing.Optional[builtins.bool] = None,
|
3612
3631
|
disable_tsconfig_dev: typing.Optional[builtins.bool] = None,
|
3613
3632
|
docgen: typing.Optional[builtins.bool] = None,
|
@@ -3755,6 +3774,7 @@ class NpmPackage(
|
|
3755
3774
|
renovatebot_options: typing.Optional[typing.Union[_projen_04054675.RenovatebotOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
3756
3775
|
) -> None:
|
3757
3776
|
'''
|
3777
|
+
:param code_owners: List of teams used to generate the CODEOWNERS file. Default: []
|
3758
3778
|
:param disable_tsconfig: (experimental) Do not generate a ``tsconfig.json`` file (used by jsii projects since tsconfig.json is generated by the jsii compiler). Default: false
|
3759
3779
|
:param disable_tsconfig_dev: (experimental) Do not generate a ``tsconfig.dev.json`` file. Default: false
|
3760
3780
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
@@ -3902,6 +3922,7 @@ class NpmPackage(
|
|
3902
3922
|
:param renovatebot_options: (experimental) Options for renovatebot. Default: - default options
|
3903
3923
|
'''
|
3904
3924
|
options = NpmPackageOptions(
|
3925
|
+
code_owners=code_owners,
|
3905
3926
|
disable_tsconfig=disable_tsconfig,
|
3906
3927
|
disable_tsconfig_dev=disable_tsconfig_dev,
|
3907
3928
|
docgen=docgen,
|
@@ -4201,6 +4222,7 @@ class NpmPackage(
|
|
4201
4222
|
"tsconfig_dev_file": "tsconfigDevFile",
|
4202
4223
|
"ts_jest_options": "tsJestOptions",
|
4203
4224
|
"typescript_version": "typescriptVersion",
|
4225
|
+
"code_owners": "codeOwners",
|
4204
4226
|
},
|
4205
4227
|
)
|
4206
4228
|
class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
|
@@ -4352,6 +4374,7 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
|
|
4352
4374
|
tsconfig_dev_file: typing.Optional[builtins.str] = None,
|
4353
4375
|
ts_jest_options: typing.Optional[typing.Union[_projen_typescript_04054675.TsJestOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4354
4376
|
typescript_version: typing.Optional[builtins.str] = None,
|
4377
|
+
code_owners: typing.Sequence[builtins.str],
|
4355
4378
|
) -> None:
|
4356
4379
|
'''
|
4357
4380
|
:param name: (experimental) This is the name of your project. Default: $BASEDIR
|
@@ -4499,6 +4522,7 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
|
|
4499
4522
|
:param tsconfig_dev_file: (experimental) The name of the development tsconfig.json file. Default: "tsconfig.dev.json"
|
4500
4523
|
:param ts_jest_options: (experimental) Options for ts-jest.
|
4501
4524
|
:param typescript_version: (experimental) TypeScript version to use. NOTE: Typescript is not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~1.2.3``). Default: "latest"
|
4525
|
+
:param code_owners: List of teams used to generate the CODEOWNERS file. Default: []
|
4502
4526
|
'''
|
4503
4527
|
if isinstance(git_ignore_options, dict):
|
4504
4528
|
git_ignore_options = _projen_04054675.IgnoreFileOptions(**git_ignore_options)
|
@@ -4709,9 +4733,11 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
|
|
4709
4733
|
check_type(argname="argument tsconfig_dev_file", value=tsconfig_dev_file, expected_type=type_hints["tsconfig_dev_file"])
|
4710
4734
|
check_type(argname="argument ts_jest_options", value=ts_jest_options, expected_type=type_hints["ts_jest_options"])
|
4711
4735
|
check_type(argname="argument typescript_version", value=typescript_version, expected_type=type_hints["typescript_version"])
|
4736
|
+
check_type(argname="argument code_owners", value=code_owners, expected_type=type_hints["code_owners"])
|
4712
4737
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
4713
4738
|
"name": name,
|
4714
4739
|
"default_release_branch": default_release_branch,
|
4740
|
+
"code_owners": code_owners,
|
4715
4741
|
}
|
4716
4742
|
if commit_generated is not None:
|
4717
4743
|
self._values["commit_generated"] = commit_generated
|
@@ -6814,6 +6840,16 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
|
|
6814
6840
|
result = self._values.get("typescript_version")
|
6815
6841
|
return typing.cast(typing.Optional[builtins.str], result)
|
6816
6842
|
|
6843
|
+
@builtins.property
|
6844
|
+
def code_owners(self) -> typing.List[builtins.str]:
|
6845
|
+
'''List of teams used to generate the CODEOWNERS file.
|
6846
|
+
|
6847
|
+
:default: []
|
6848
|
+
'''
|
6849
|
+
result = self._values.get("code_owners")
|
6850
|
+
assert result is not None, "Required property 'code_owners' is missing"
|
6851
|
+
return typing.cast(typing.List[builtins.str], result)
|
6852
|
+
|
6817
6853
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
6818
6854
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
6819
6855
|
|
@@ -6834,6 +6870,7 @@ class PythonPackage(
|
|
6834
6870
|
def __init__(
|
6835
6871
|
self,
|
6836
6872
|
*,
|
6873
|
+
code_owners: typing.Sequence[builtins.str],
|
6837
6874
|
pull_request_template: typing.Optional[builtins.bool] = None,
|
6838
6875
|
pull_request_template_contents: typing.Optional[typing.Sequence[builtins.str]] = None,
|
6839
6876
|
module_name: builtins.str,
|
@@ -6895,6 +6932,7 @@ class PythonPackage(
|
|
6895
6932
|
renovatebot_options: typing.Optional[typing.Union[_projen_04054675.RenovatebotOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
6896
6933
|
) -> None:
|
6897
6934
|
'''
|
6935
|
+
:param code_owners: List of teams used to generate the CODEOWNERS file. Default: []
|
6898
6936
|
:param pull_request_template: Include a GitHub pull request template. Default: true
|
6899
6937
|
:param pull_request_template_contents: The contents of the pull request template. Default: - default content
|
6900
6938
|
:param module_name: (experimental) Name of the python package as used in imports and filenames. Must only consist of alphanumeric characters and underscores. Default: $PYTHON_MODULE_NAME
|
@@ -6956,6 +6994,7 @@ class PythonPackage(
|
|
6956
6994
|
:param renovatebot_options: (experimental) Options for renovatebot. Default: - default options
|
6957
6995
|
'''
|
6958
6996
|
options = PythonPackageOptions(
|
6997
|
+
code_owners=code_owners,
|
6959
6998
|
pull_request_template=pull_request_template,
|
6960
6999
|
pull_request_template_contents=pull_request_template_contents,
|
6961
7000
|
module_name=module_name,
|
@@ -7081,6 +7120,7 @@ class PythonPackage(
|
|
7081
7120
|
"setuptools": "setuptools",
|
7082
7121
|
"venv": "venv",
|
7083
7122
|
"venv_options": "venvOptions",
|
7123
|
+
"code_owners": "codeOwners",
|
7084
7124
|
"pull_request_template": "pullRequestTemplate",
|
7085
7125
|
"pull_request_template_contents": "pullRequestTemplateContents",
|
7086
7126
|
},
|
@@ -7146,6 +7186,7 @@ class PythonPackageOptions(_projen_python_04054675.PythonProjectOptions):
|
|
7146
7186
|
setuptools: typing.Optional[builtins.bool] = None,
|
7147
7187
|
venv: typing.Optional[builtins.bool] = None,
|
7148
7188
|
venv_options: typing.Optional[typing.Union[_projen_python_04054675.VenvOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
7189
|
+
code_owners: typing.Sequence[builtins.str],
|
7149
7190
|
pull_request_template: typing.Optional[builtins.bool] = None,
|
7150
7191
|
pull_request_template_contents: typing.Optional[typing.Sequence[builtins.str]] = None,
|
7151
7192
|
) -> None:
|
@@ -7207,6 +7248,7 @@ class PythonPackageOptions(_projen_python_04054675.PythonProjectOptions):
|
|
7207
7248
|
:param setuptools: (experimental) Use setuptools with a setup.py script for packaging and publishing. Default: - true, unless poetry is true, then false
|
7208
7249
|
:param venv: (experimental) Use venv to manage a virtual environment for installing dependencies inside. Default: - true, unless poetry is true, then false
|
7209
7250
|
:param venv_options: (experimental) Venv options. Default: - defaults
|
7251
|
+
:param code_owners: List of teams used to generate the CODEOWNERS file. Default: []
|
7210
7252
|
:param pull_request_template: Include a GitHub pull request template. Default: true
|
7211
7253
|
:param pull_request_template_contents: The contents of the pull request template. Default: - default content
|
7212
7254
|
'''
|
@@ -7303,6 +7345,7 @@ class PythonPackageOptions(_projen_python_04054675.PythonProjectOptions):
|
|
7303
7345
|
check_type(argname="argument setuptools", value=setuptools, expected_type=type_hints["setuptools"])
|
7304
7346
|
check_type(argname="argument venv", value=venv, expected_type=type_hints["venv"])
|
7305
7347
|
check_type(argname="argument venv_options", value=venv_options, expected_type=type_hints["venv_options"])
|
7348
|
+
check_type(argname="argument code_owners", value=code_owners, expected_type=type_hints["code_owners"])
|
7306
7349
|
check_type(argname="argument pull_request_template", value=pull_request_template, expected_type=type_hints["pull_request_template"])
|
7307
7350
|
check_type(argname="argument pull_request_template_contents", value=pull_request_template_contents, expected_type=type_hints["pull_request_template_contents"])
|
7308
7351
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
@@ -7311,6 +7354,7 @@ class PythonPackageOptions(_projen_python_04054675.PythonProjectOptions):
|
|
7311
7354
|
"author_name": author_name,
|
7312
7355
|
"version": version,
|
7313
7356
|
"module_name": module_name,
|
7357
|
+
"code_owners": code_owners,
|
7314
7358
|
}
|
7315
7359
|
if commit_generated is not None:
|
7316
7360
|
self._values["commit_generated"] = commit_generated
|
@@ -8123,6 +8167,16 @@ class PythonPackageOptions(_projen_python_04054675.PythonProjectOptions):
|
|
8123
8167
|
result = self._values.get("venv_options")
|
8124
8168
|
return typing.cast(typing.Optional[_projen_python_04054675.VenvOptions], result)
|
8125
8169
|
|
8170
|
+
@builtins.property
|
8171
|
+
def code_owners(self) -> typing.List[builtins.str]:
|
8172
|
+
'''List of teams used to generate the CODEOWNERS file.
|
8173
|
+
|
8174
|
+
:default: []
|
8175
|
+
'''
|
8176
|
+
result = self._values.get("code_owners")
|
8177
|
+
assert result is not None, "Required property 'code_owners' is missing"
|
8178
|
+
return typing.cast(typing.List[builtins.str], result)
|
8179
|
+
|
8126
8180
|
@builtins.property
|
8127
8181
|
def pull_request_template(self) -> typing.Optional[builtins.bool]:
|
8128
8182
|
'''Include a GitHub pull request template.
|
@@ -8329,6 +8383,7 @@ def _typecheckingstub__bcc0f0f3d874afabc142961b7ca192083fcad906385166f2e47f7e739
|
|
8329
8383
|
publish_to_pypi: typing.Optional[typing.Union[_projen_cdk_04054675.JsiiPythonTarget, typing.Dict[builtins.str, typing.Any]]] = None,
|
8330
8384
|
python: typing.Optional[typing.Union[_projen_cdk_04054675.JsiiPythonTarget, typing.Dict[builtins.str, typing.Any]]] = None,
|
8331
8385
|
rootdir: typing.Optional[builtins.str] = None,
|
8386
|
+
code_owners: typing.Sequence[builtins.str],
|
8332
8387
|
) -> None:
|
8333
8388
|
"""Type checking stubs"""
|
8334
8389
|
pass
|
@@ -8480,6 +8535,7 @@ def _typecheckingstub__b17dce6f2f04ceb519c781a818d66bcf4fef528d5b613028b126fd373
|
|
8480
8535
|
tsconfig_dev_file: typing.Optional[builtins.str] = None,
|
8481
8536
|
ts_jest_options: typing.Optional[typing.Union[_projen_typescript_04054675.TsJestOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8482
8537
|
typescript_version: typing.Optional[builtins.str] = None,
|
8538
|
+
code_owners: typing.Sequence[builtins.str],
|
8483
8539
|
) -> None:
|
8484
8540
|
"""Type checking stubs"""
|
8485
8541
|
pass
|
@@ -8543,6 +8599,7 @@ def _typecheckingstub__882525f8fb69251a060fbbe97c2383313ea4b9c0269874cb1d13172a5
|
|
8543
8599
|
setuptools: typing.Optional[builtins.bool] = None,
|
8544
8600
|
venv: typing.Optional[builtins.bool] = None,
|
8545
8601
|
venv_options: typing.Optional[typing.Union[_projen_python_04054675.VenvOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8602
|
+
code_owners: typing.Sequence[builtins.str],
|
8546
8603
|
pull_request_template: typing.Optional[builtins.bool] = None,
|
8547
8604
|
pull_request_template_contents: typing.Optional[typing.Sequence[builtins.str]] = None,
|
8548
8605
|
) -> None:
|
projen_modules/_jsii/__init__.py
CHANGED
@@ -17,7 +17,7 @@ import constructs._jsii
|
|
17
17
|
import projen._jsii
|
18
18
|
|
19
19
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
20
|
-
"projen-modules", "0.0.
|
20
|
+
"projen-modules", "0.0.9", __name__[0:-6], "projen-modules@0.0.9.jsii.tgz"
|
21
21
|
)
|
22
22
|
|
23
23
|
__all__ = [
|
Binary file
|
@@ -0,0 +1,9 @@
|
|
1
|
+
projen_modules/__init__.py,sha256=3U2N5ymEKd5sswg6TnLa78XKMp8fKNwbcFsifRsswaA,499806
|
2
|
+
projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
projen_modules/_jsii/__init__.py,sha256=upE95xO-JK30v40cBhvGyp-bUX6vBdKXIiDmUboPg4c,470
|
4
|
+
projen_modules/_jsii/projen-modules@0.0.9.jsii.tgz,sha256=cAxg5-0BKmemdZHu8tWWaoyWSkgyxsCW89Y-AhODsRk,67018
|
5
|
+
projen_modules-0.0.9.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
+
projen_modules-0.0.9.dist-info/METADATA,sha256=2n5CWab3zW16p1u6XNFgsKKhCUECW3zUtJQzuYDBAbg,1074
|
7
|
+
projen_modules-0.0.9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
8
|
+
projen_modules-0.0.9.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
|
9
|
+
projen_modules-0.0.9.dist-info/RECORD,,
|
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
projen_modules/__init__.py,sha256=yDAjjqthhPDFXQwJ0Vdj_iSfw1TR3mO8BEI18WpOlkk,497007
|
2
|
-
projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
projen_modules/_jsii/__init__.py,sha256=GpN7JwGn5GBkPnNqsux4yjCuf2A6zhxM0w_Z2rVEu3w,470
|
4
|
-
projen_modules/_jsii/projen-modules@0.0.8.jsii.tgz,sha256=zhl1_7qhY3HdQ0v_ZPhc9szCh9EfLkdGmszHfq2bgdw,65744
|
5
|
-
projen_modules-0.0.8.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
-
projen_modules-0.0.8.dist-info/METADATA,sha256=WnXHLKaZzrd-muWSpVk9ls0hLD0YE78trylzzVSS75I,1074
|
7
|
-
projen_modules-0.0.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
8
|
-
projen_modules-0.0.8.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
|
9
|
-
projen_modules-0.0.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|