@@ -27,18 +27,21 @@ def find_version(*file_paths):
2727 description = __doc__ ,
2828 long_description = read ("README.md" ),
2929 author = "Amazon Web Services" ,
30- url = "https://aws.amazon.com/cloudformation/" ,
30+ 31+ url = "https://github.com/aws-cloudformation/aws-cloudformation-rpdk-java-plugin/" ,
3132 # https://packaging.python.org/guides/packaging-namespace-packages/
3233 packages = ["rpdk.java" ],
3334 package_dir = {"" : "python" },
3435 # package_data -> use MANIFEST.in instead
3536 include_package_data = True ,
3637 zip_safe = True ,
3738 install_requires = ["cloudformation-cli>=0.1,<0.2" ],
39+ python_requires = ">=3.6" ,
3840 entry_points = {"rpdk.v1.languages" : ["java = rpdk.java.codegen:JavaLanguagePlugin" ]},
3941 license = "Apache License 2.0" ,
40- classifiers = (
42+ classifiers = [
4143 "Development Status :: 4 - Beta" ,
44+ "Environment :: Console" ,
4245 "Intended Audience :: Developers" ,
4346 "License :: OSI Approved :: Apache Software License" ,
4447 "Natural Language :: English" ,
@@ -48,6 +51,7 @@ def find_version(*file_paths):
4851 "Programming Language :: Python :: 3 :: Only" ,
4952 "Programming Language :: Python :: 3.6" ,
5053 "Programming Language :: Python :: 3.7" ,
51- ),
54+ "Programming Language :: Python :: 3.8" ,
55+ ],
5256 keywords = "Amazon Web Services AWS CloudFormation" ,
5357)
0 commit comments