Skip to content

Commit eb7ec32

Browse files
authored
Merge pull request #43 from ammokhov/release-version-v1
Changed Lib name and some settings. Prepare for library release
2 parents a70b01b + 1175bbf commit eb7ec32

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "cfn-rpdk",
3-
"version": "0.5.0",
2+
"name": "cloudformation-cli-typescript-lib",
3+
"version": "1.0.0",
44
"description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.",
55
"private": false,
66
"main": "dist/index.js",
@@ -27,14 +27,14 @@
2727
},
2828
"repository": {
2929
"type": "git",
30-
"url": "git+https://github.com/eduardomourar/cloudformation-cli-typescript-plugin.git"
30+
"url": "git+https://github.com/aws-cloudformation/cloudformation-cli-typescript-plugin.git"
3131
},
32-
"author": "eduardomourar",
33-
"license": "MIT",
32+
"author": "Amazon Web Services",
33+
"license": "Apache License 2.0",
3434
"bugs": {
35-
"url": "https://github.com/eduardomourar/cloudformation-cli-typescript-plugin/issues"
35+
"url": "https://github.com/aws-cloudformation/cloudformation-cli-typescript-plugin/issues"
3636
},
37-
"homepage": "https://github.com/eduardomourar/cloudformation-cli-typescript-plugin#readme",
37+
"homepage": "https://github.com/aws-cloudformation/cloudformation-cli-typescript-plugin#readme",
3838
"dependencies": {
3939
"@org-formation/tombok": "^0.0.1",
4040
"autobind-decorator": "^2.4.0",

setup.py

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,31 @@ def find_version(*file_paths):
2828
description=__doc__,
2929
long_description=read("README.md"),
3030
long_description_content_type="text/markdown",
31-
author="eduardomourar",
32-
author_email="eduardomourar@users.noreply.github.com",
33-
url="https://github.com/eduardomourar/cloudformation-cli-typescript-plugin",
31+
author="Amazon Web Services",
32+
author_email="aws-cloudformation-developers@amazon.com",
33+
url="https://github.com/aws-cloudformation/cloudformation-cli-typescript-plugin",
3434
packages=["rpdk.typescript"],
3535
package_dir={"": "python"},
3636
# package_data -> use MANIFEST.in instead
3737
include_package_data=True,
3838
zip_safe=True,
3939
python_requires=">=3.6",
40-
install_requires=["cloudformation-cli>=0.1.14", "zipfile38>=0.0.3,<0.2"],
40+
install_requires=[
41+
"cloudformation-cli>=0.1.14",
42+
"docker>=3.7,<5",
43+
"zipfile38>=0.0.3,<0.2",
44+
],
4145
entry_points={
4246
"rpdk.v1.languages": [
4347
"typescript = rpdk.typescript.codegen:TypescriptLanguagePlugin",
4448
]
4549
},
46-
license="MIT",
50+
license="Apache License 2.0",
4751
classifiers=[
48-
"Development Status :: 2 - Pre-Alpha",
52+
"Development Status :: 5 - Production/Stable",
4953
"Environment :: Console",
5054
"Intended Audience :: Developers",
51-
"License :: OSI Approved :: MIT/X Consortium License",
55+
"License :: OSI Approved :: Apache Software License",
5256
"Natural Language :: English",
5357
"Topic :: Software Development :: Build Tools",
5458
"Topic :: Software Development :: Code Generators",

0 commit comments

Comments
 (0)