projen 0.81.17__py3-none-any.whl → 0.98.25__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/__init__.py +1020 -55
- projen/_jsii/__init__.py +17 -2
- projen/_jsii/projen@0.98.25.jsii.tgz +0 -0
- projen/awscdk/__init__.py +1503 -163
- projen/build/__init__.py +79 -44
- projen/cdk/__init__.py +877 -129
- projen/cdk8s/__init__.py +681 -67
- projen/cdktf/__init__.py +318 -36
- projen/circleci/__init__.py +32 -1
- projen/github/__init__.py +1250 -76
- projen/github/workflows/__init__.py +400 -17
- projen/gitlab/__init__.py +234 -4
- projen/java/__init__.py +296 -4
- projen/javascript/__init__.py +1294 -81
- projen/javascript/biome_config/__init__.py +5461 -0
- projen/python/__init__.py +2010 -189
- projen/python/uv_config/__init__.py +3933 -0
- projen/release/__init__.py +921 -141
- projen/typescript/__init__.py +851 -93
- projen/vscode/__init__.py +19 -1
- projen/web/__init__.py +1196 -119
- {projen-0.81.17.data → projen-0.98.25.data}/scripts/projen +1 -1
- {projen-0.81.17.dist-info → projen-0.98.25.dist-info}/METADATA +6 -15
- projen-0.98.25.dist-info/RECORD +28 -0
- {projen-0.81.17.dist-info → projen-0.98.25.dist-info}/WHEEL +1 -1
- projen/_jsii/projen@0.81.17.jsii.tgz +0 -0
- projen-0.81.17.dist-info/RECORD +0 -26
- {projen-0.81.17.dist-info → projen-0.98.25.dist-info}/LICENSE +0 -0
- {projen-0.81.17.dist-info → projen-0.98.25.dist-info}/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
|
|
|
8
8
|
os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
|
|
9
9
|
|
|
10
10
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
11
|
-
"projen", "0.
|
|
11
|
+
"projen", "0.98.25", "projen", "projen@0.98.25.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: projen
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.98.25
|
|
4
4
|
Summary: CDK for software projects
|
|
5
5
|
Home-page: https://github.com/projen/projen.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -10,20 +10,19 @@ Classifier: Intended Audience :: Developers
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Programming Language :: JavaScript
|
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
16
|
Classifier: Typing :: Typed
|
|
18
17
|
Classifier: Development Status :: 4 - Beta
|
|
19
18
|
Classifier: License :: OSI Approved
|
|
20
|
-
Requires-Python: ~=3.
|
|
19
|
+
Requires-Python: ~=3.9
|
|
21
20
|
Description-Content-Type: text/markdown
|
|
22
21
|
License-File: LICENSE
|
|
23
22
|
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
24
|
-
Requires-Dist: jsii <2.0.0,>=1.
|
|
23
|
+
Requires-Dist: jsii <2.0.0,>=1.119.0
|
|
25
24
|
Requires-Dist: publication >=0.0.3
|
|
26
|
-
Requires-Dist: typeguard
|
|
25
|
+
Requires-Dist: typeguard <4.3.0,>=2.13.3
|
|
27
26
|
|
|
28
27
|
<p align="center">
|
|
29
28
|
<a href="https://projen.io">
|
|
@@ -312,14 +311,6 @@ projen has an unofficial [VS Code extension](https://marketplace.visualstudio.co
|
|
|
312
311
|
The projen community can be found within the #projen channel in the [cdk.dev](https://cdk.dev/)
|
|
313
312
|
community Slack workspace.
|
|
314
313
|
|
|
315
|
-
### Virtual Meetup
|
|
316
|
-
|
|
317
|
-
* Thursday June 30, 2022
|
|
318
|
-
* 1-2pm America/New_York (EDT)
|
|
319
|
-
* [CFP](https://bit.ly/3NEc0UQ) a Google Form
|
|
320
|
-
* CFP Closes Saturday April 30, 2022
|
|
321
|
-
* Hosted on [Zoom](https://zoom.us/j/92399854777?pwd=OUZybHlobHNoZUs1VVordWhaRTVGdz09#success)
|
|
322
|
-
|
|
323
314
|
## Contributions
|
|
324
315
|
|
|
325
316
|
Contributions of all kinds are welcome! Check out our [contributor's
|
|
@@ -330,8 +321,8 @@ For a quick start, check out a development environment:
|
|
|
330
321
|
```bash
|
|
331
322
|
$ git clone git@github.com:projen/projen
|
|
332
323
|
$ cd projen
|
|
333
|
-
$
|
|
334
|
-
$
|
|
324
|
+
$ npm ci
|
|
325
|
+
$ npm run watch # compile in the background
|
|
335
326
|
```
|
|
336
327
|
|
|
337
328
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
projen/__init__.py,sha256=zoMQClQ8tjb_Nwrge0_YTRpoXZSbFA1UmBKPS18-eKE,703406
|
|
2
|
+
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
projen/_jsii/__init__.py,sha256=NiZYW-ywmU4B96zHVTnytRx4vtCmnpm9Cmph6fnEflY,1406
|
|
4
|
+
projen/_jsii/projen@0.98.25.jsii.tgz,sha256=5KD6LUNTJwOeZDzxRNw0_d4_Ap-M0MjhwGrc3Tv-qqE,3079269
|
|
5
|
+
projen/awscdk/__init__.py,sha256=R-WrB50cNj9Nve5mUlTXA4bE6nrh34MQJNpoPecR7_I,1169669
|
|
6
|
+
projen/build/__init__.py,sha256=RZllpmDOwZ2McAIifVv2zr9oIrTEHhq-vXJEjzX2VkE,54258
|
|
7
|
+
projen/cdk/__init__.py,sha256=8THYlAqNos27L9wg61A59u9iDNgx0Ppr_Waz3THiBfs,564169
|
|
8
|
+
projen/cdk8s/__init__.py,sha256=uviQ6r-Ak5IM_JXJMSB4KhWBOU2PjEEqU29A4m9YnAU,642386
|
|
9
|
+
projen/cdktf/__init__.py,sha256=FdkzfQBrxkKhUEfwKCJ3qmWROgLxxnad4Av5Y2CW83A,245742
|
|
10
|
+
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
+
projen/github/__init__.py,sha256=w2BFcBOet1hFyFRlCAAZJn4M4lb8pX1KOf9p3wj-FCY,487883
|
|
12
|
+
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
|
+
projen/gitlab/__init__.py,sha256=nGFkuUsQ0PZhBWufKp_Sw-m3x2sdn6eVe5_HMV_3iAE,214054
|
|
14
|
+
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
|
+
projen/javascript/__init__.py,sha256=LKylFsOjKjeHuZdjYDLmQqcaWffZy0t44E9quuAsqqM,912190
|
|
16
|
+
projen/javascript/biome_config/__init__.py,sha256=13iyOCToDgdtR8J8eQeYA-NO6xqCo_8AWJJ39MohLvs,230653
|
|
17
|
+
projen/python/__init__.py,sha256=bB6M7Y9C6YjrM--VRVSrEN0fz2O5PqVWe8Ch34j68zA,300041
|
|
18
|
+
projen/python/uv_config/__init__.py,sha256=aAXQ9f5I5OJYCLm62toQ-QCBR6qjo8sbxfb62ZkBJjI,226952
|
|
19
|
+
projen/release/__init__.py,sha256=Uy-V73NOORm9navwGAhj1f8GJB_qWuXy49Ad6PdFt8w,340718
|
|
20
|
+
projen/typescript/__init__.py,sha256=BUFuhNXlr7MUHkdYLmBWtjNzJcev_9KveGjPbEBUSII,540604
|
|
21
|
+
projen/vscode/__init__.py,sha256=gDvpsybrGDRr6b5owXoQ6-fS9sJlKiGr-jH6y8D985k,70199
|
|
22
|
+
projen/web/__init__.py,sha256=IYAJGwOsNhvIoNypEe-OPbNo1mcE6zAsQdL89ykVbA4,879182
|
|
23
|
+
projen-0.98.25.data/scripts/projen,sha256=t7K0nOJe5oyHWNu-aoE2cwgd80LynLrvvPvqcAn4FrU,358
|
|
24
|
+
projen-0.98.25.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
25
|
+
projen-0.98.25.dist-info/METADATA,sha256=0FnRLKxgk99Lrb3sPo8trOE1F36oNir2XoTeFK1rFeY,79360
|
|
26
|
+
projen-0.98.25.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
27
|
+
projen-0.98.25.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
28
|
+
projen-0.98.25.dist-info/RECORD,,
|
|
Binary file
|
projen-0.81.17.dist-info/RECORD
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
projen/__init__.py,sha256=VxJknyWPD705CM77U-Qpe4zf-btCxYCWhUMpIM-DPGI,653934
|
|
2
|
-
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
projen/_jsii/__init__.py,sha256=TXi4rv25E4gjDgqSn9dyqx9X7U7RffgpWIUVE4i-d6A,438
|
|
4
|
-
projen/_jsii/projen@0.81.17.jsii.tgz,sha256=qVb2tX69NWCOFFspK2xMcwWiVXQ6Ni7pyHXLc1PC8jI,2649726
|
|
5
|
-
projen/awscdk/__init__.py,sha256=H-I_Y7JIML3DrFR6cW7zxDhDO3pzCKtQRA7n7S0399c,1079302
|
|
6
|
-
projen/build/__init__.py,sha256=X-j9xMXag2DIpKbYidLOQSwH_G20I0csQEAklquYidY,52320
|
|
7
|
-
projen/cdk/__init__.py,sha256=-_Gy4T_8XAqQWEMBQYiy1fzM7yjoZiAc2iz9GldpXlM,510147
|
|
8
|
-
projen/cdk8s/__init__.py,sha256=_ZW90j7X6ZSMLSFAyp71bNvKAw0nEe9njM__zYC8ntw,597384
|
|
9
|
-
projen/cdktf/__init__.py,sha256=g50TgCYG3kNym2Um6tVJarLBbWFrEt3o5C8fcmsYA-4,224466
|
|
10
|
-
projen/circleci/__init__.py,sha256=BVsyxKB3LOQCEqCwEPnhKnI_6HfYxQwGQL3WKKxXuGo,75913
|
|
11
|
-
projen/github/__init__.py,sha256=Xy_wFUMrz833NJkX7_AgO8uZT9OQYw1NuEkp9SYY3gI,425340
|
|
12
|
-
projen/github/workflows/__init__.py,sha256=Fs1UbbTTv6x_Z2UPl7fUlIPJVHSSk8n8RlaNhDgY_28,250737
|
|
13
|
-
projen/gitlab/__init__.py,sha256=o6eWuCUSLFL7xzlrq1r4Zfjr6LI-YGBaZG7wXHmfNjI,202836
|
|
14
|
-
projen/java/__init__.py,sha256=CKgcOzbZb2zUcVOtiZDX2sy-nvkm-DA0GY6eHZ47tMs,183709
|
|
15
|
-
projen/javascript/__init__.py,sha256=8JjZqBen7DTEtYtkeCGNVXtDGflQak0lnHQlKt4eRy0,844523
|
|
16
|
-
projen/python/__init__.py,sha256=r_vZgIiHuf-QaijW15I65E5VJX5Shr43RxSSPBL8Cew,213158
|
|
17
|
-
projen/release/__init__.py,sha256=YvARhSV51PErfpvCTxhqflEVbsjFTElMH6FCBVkibsE,285447
|
|
18
|
-
projen/typescript/__init__.py,sha256=eR5WFkKV81pi_98GEDjUU53iPwosq5ynAEo2RabjqSg,474506
|
|
19
|
-
projen/vscode/__init__.py,sha256=wzlC2zPverYOkUCUyEENBjezJx1BbKL1Lnnc_4LRMqI,69040
|
|
20
|
-
projen/web/__init__.py,sha256=DHH1QcUx29E7EfI_XwQZKCL80O65C5eYyQup120k6AM,797444
|
|
21
|
-
projen-0.81.17.data/scripts/projen,sha256=MRgrQ5GpZx6yvXjHs_-5dHbMPceXZU4BuXoGF72zpPU,358
|
|
22
|
-
projen-0.81.17.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
23
|
-
projen-0.81.17.dist-info/METADATA,sha256=fcRzie2sDVEAfWE9sxwklzG9bJ_2qSnb4BKTN5e2gIQ,79652
|
|
24
|
-
projen-0.81.17.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
25
|
-
projen-0.81.17.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
26
|
-
projen-0.81.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|