ncfour-us-projen-utils 0.0.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.
- ncfour_us_projen_utils-0.0.0/LICENSE +19 -0
- ncfour_us_projen_utils-0.0.0/MANIFEST.in +1 -0
- ncfour_us_projen_utils-0.0.0/PKG-INFO +60 -0
- ncfour_us_projen_utils-0.0.0/README.md +33 -0
- ncfour_us_projen_utils-0.0.0/pyproject.toml +9 -0
- ncfour_us_projen_utils-0.0.0/setup.cfg +4 -0
- ncfour_us_projen_utils-0.0.0/setup.py +64 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils/__init__.py +4194 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils/_jsii/__init__.py +42 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils/_jsii/projen-utils@0.0.0.jsii.tgz +0 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils/py.typed +1 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils.egg-info/PKG-INFO +60 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils.egg-info/SOURCES.txt +14 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils.egg-info/dependency_links.txt +1 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils.egg-info/requires.txt +5 -0
- ncfour_us_projen_utils-0.0.0/src/ncfour_us_projen_utils.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2024 Tim Hahn
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include pyproject.toml
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ncfour-us-projen-utils
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: @ncfour-us/projen-utils
|
|
5
|
+
Home-page: https://github.com/ncfour-us/projen-utils.git
|
|
6
|
+
Author: Tim Hahn<hahntj@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Source, https://github.com/ncfour-us/projen-utils.git
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: JavaScript
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Typing :: Typed
|
|
17
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
18
|
+
Classifier: License :: OSI Approved
|
|
19
|
+
Requires-Python: ~=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: constructs<11.0.0,>=10.6.0
|
|
23
|
+
Requires-Dist: jsii<2.0.0,>=1.132.0
|
|
24
|
+
Requires-Dist: projen<0.100.0,>=0.99.65
|
|
25
|
+
Requires-Dist: publication>=0.0.3
|
|
26
|
+
Requires-Dist: typeguard==2.13.3
|
|
27
|
+
|
|
28
|
+
# projen-utils
|
|
29
|
+
|
|
30
|
+
This project contains a couple of constructs which are meant
|
|
31
|
+
to be used with the [projen]() project. These utilities
|
|
32
|
+
extend existing `projen` constructs to enable easier development
|
|
33
|
+
of TypeScript ESM projects/packages as well as handling
|
|
34
|
+
`pre-commit` configuration in `projen`-managed projects.
|
|
35
|
+
|
|
36
|
+
## Badges
|
|
37
|
+
|
|
38
|
+
## Installation
|
|
39
|
+
|
|
40
|
+
Install using `npm`, `yarn`, or `pnpm` (preferred).
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pnpm add --save-dev @ncfour-us/projen-utils
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Getting Started
|
|
47
|
+
|
|
48
|
+
## Contributing
|
|
49
|
+
|
|
50
|
+
Fork this repository and submit a PR.
|
|
51
|
+
|
|
52
|
+
## Authors
|
|
53
|
+
|
|
54
|
+
* Tim Hahn ([hahntj@gmail.com](mailto:hahntj@gmail.com), github: @climbertjh)
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
The project is covered by the MIT license, see [LICENSE](./LICENSE).
|
|
59
|
+
|
|
60
|
+
## Acknowledgements
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# projen-utils
|
|
2
|
+
|
|
3
|
+
This project contains a couple of constructs which are meant
|
|
4
|
+
to be used with the [projen]() project. These utilities
|
|
5
|
+
extend existing `projen` constructs to enable easier development
|
|
6
|
+
of TypeScript ESM projects/packages as well as handling
|
|
7
|
+
`pre-commit` configuration in `projen`-managed projects.
|
|
8
|
+
|
|
9
|
+
## Badges
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Install using `npm`, `yarn`, or `pnpm` (preferred).
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pnpm add --save-dev @ncfour-us/projen-utils
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Getting Started
|
|
20
|
+
|
|
21
|
+
## Contributing
|
|
22
|
+
|
|
23
|
+
Fork this repository and submit a PR.
|
|
24
|
+
|
|
25
|
+
## Authors
|
|
26
|
+
|
|
27
|
+
* Tim Hahn ([hahntj@gmail.com](mailto:hahntj@gmail.com), github: @climbertjh)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
The project is covered by the MIT license, see [LICENSE](./LICENSE).
|
|
32
|
+
|
|
33
|
+
## Acknowledgements
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import setuptools
|
|
3
|
+
|
|
4
|
+
kwargs = json.loads(
|
|
5
|
+
"""
|
|
6
|
+
{
|
|
7
|
+
"name": "ncfour-us-projen-utils",
|
|
8
|
+
"version": "0.0.0",
|
|
9
|
+
"description": "@ncfour-us/projen-utils",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"url": "https://github.com/ncfour-us/projen-utils.git",
|
|
12
|
+
"long_description_content_type": "text/markdown",
|
|
13
|
+
"author": "Tim Hahn<hahntj@gmail.com>",
|
|
14
|
+
"bdist_wheel": {
|
|
15
|
+
"universal": true
|
|
16
|
+
},
|
|
17
|
+
"project_urls": {
|
|
18
|
+
"Source": "https://github.com/ncfour-us/projen-utils.git"
|
|
19
|
+
},
|
|
20
|
+
"package_dir": {
|
|
21
|
+
"": "src"
|
|
22
|
+
},
|
|
23
|
+
"packages": [
|
|
24
|
+
"ncfour_us_projen_utils",
|
|
25
|
+
"ncfour_us_projen_utils._jsii"
|
|
26
|
+
],
|
|
27
|
+
"package_data": {
|
|
28
|
+
"ncfour_us_projen_utils._jsii": [
|
|
29
|
+
"projen-utils@0.0.0.jsii.tgz"
|
|
30
|
+
],
|
|
31
|
+
"ncfour_us_projen_utils": [
|
|
32
|
+
"py.typed"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"python_requires": "~=3.10",
|
|
36
|
+
"install_requires": [
|
|
37
|
+
"constructs>=10.6.0, <11.0.0",
|
|
38
|
+
"jsii>=1.132.0, <2.0.0",
|
|
39
|
+
"projen>=0.99.65, <0.100.0",
|
|
40
|
+
"publication>=0.0.3",
|
|
41
|
+
"typeguard==2.13.3"
|
|
42
|
+
],
|
|
43
|
+
"classifiers": [
|
|
44
|
+
"Intended Audience :: Developers",
|
|
45
|
+
"Operating System :: OS Independent",
|
|
46
|
+
"Programming Language :: JavaScript",
|
|
47
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
48
|
+
"Programming Language :: Python :: 3.9",
|
|
49
|
+
"Programming Language :: Python :: 3.10",
|
|
50
|
+
"Programming Language :: Python :: 3.11",
|
|
51
|
+
"Typing :: Typed",
|
|
52
|
+
"Development Status :: 5 - Production/Stable",
|
|
53
|
+
"License :: OSI Approved"
|
|
54
|
+
],
|
|
55
|
+
"scripts": []
|
|
56
|
+
}
|
|
57
|
+
"""
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
with open("README.md", encoding="utf8") as fp:
|
|
61
|
+
kwargs["long_description"] = fp.read()
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
setuptools.setup(**kwargs)
|