@@ -36,20 +36,20 @@ def find_version(*file_paths):
36
36
# package_data -> use MANIFEST.in instead
37
37
include_package_data = True ,
38
38
zip_safe = True ,
39
- python_requires = ">=3.6 " ,
39
+ python_requires = ">=3.8 " ,
40
40
install_requires = ["cloudformation-cli>=0.2.26" , "types-dataclasses>=0.1.5" ],
41
41
entry_points = {
42
42
"rpdk.v1.languages" : [
43
+ "python311 = rpdk.python.codegen:Python311LanguagePlugin" ,
44
+ "python310 = rpdk.python.codegen:Python310LanguagePlugin" ,
43
45
"python39 = rpdk.python.codegen:Python39LanguagePlugin" ,
44
46
"python38 = rpdk.python.codegen:Python38LanguagePlugin" ,
45
- "python37 = rpdk.python.codegen:Python37LanguagePlugin" ,
46
- "python36 = rpdk.python.codegen:Python36LanguagePlugin" ,
47
47
],
48
48
"rpdk.v1.parsers" : [
49
+ "python311 = rpdk.python.parser:setup_subparser_python311" ,
50
+ "python310 = rpdk.python.parser:setup_subparser_python310" ,
49
51
"python39 = rpdk.python.parser:setup_subparser_python39" ,
50
52
"python38 = rpdk.python.parser:setup_subparser_python38" ,
51
- "python37 = rpdk.python.parser:setup_subparser_python37" ,
52
- "python36 = rpdk.python.parser:setup_subparser_python36" ,
53
53
],
54
54
},
55
55
license = "Apache License 2.0" ,
@@ -63,8 +63,10 @@ def find_version(*file_paths):
63
63
"Topic :: Software Development :: Code Generators" ,
64
64
"Operating System :: OS Independent" ,
65
65
"Programming Language :: Python :: 3 :: Only" ,
66
- "Programming Language :: Python :: 3.6" ,
67
- "Programming Language :: Python :: 3.7" ,
66
+ "Programming Language :: Python :: 3.8" ,
67
+ "Programming Language :: Python :: 3.9" ,
68
+ "Programming Language :: Python :: 3.10" ,
69
+ "Programming Language :: Python :: 3.11" ,
68
70
],
69
71
keywords = "Amazon Web Services AWS CloudFormation" ,
70
72
)
0 commit comments