| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2006-2010 Mitch Garnaat http://garnaat.org/ | 3 # Copyright (c) 2006-2010 Mitch Garnaat http://garnaat.org/ |
| 4 # Copyright (c) 2010, Eucalyptus Systems, Inc. | 4 # Copyright (c) 2010, Eucalyptus Systems, Inc. |
| 5 # All rights reserved. | 5 # All rights reserved. |
| 6 # | 6 # |
| 7 # Permission is hereby granted, free of charge, to any person obtaining a | 7 # Permission is hereby granted, free of charge, to any person obtaining a |
| 8 # copy of this software and associated documentation files (the | 8 # copy of this software and associated documentation files (the |
| 9 # "Software"), to deal in the Software without restriction, including | 9 # "Software"), to deal in the Software without restriction, including |
| 10 # without limitation the rights to use, copy, modify, merge, publish, dis- | 10 # without limitation the rights to use, copy, modify, merge, publish, dis- |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "boto.mashups", "boto.contrib", "boto.manage", | 68 "boto.mashups", "boto.contrib", "boto.manage", |
| 69 "boto.services", "boto.cloudfront", | 69 "boto.services", "boto.cloudfront", |
| 70 "boto.roboto", "boto.rds", "boto.vpc", "boto.fps", | 70 "boto.roboto", "boto.rds", "boto.vpc", "boto.fps", |
| 71 "boto.fps", "boto.emr", "boto.emr", "boto.sns", | 71 "boto.fps", "boto.emr", "boto.emr", "boto.sns", |
| 72 "boto.ecs", "boto.iam", "boto.route53", "boto.ses", | 72 "boto.ecs", "boto.iam", "boto.route53", "boto.ses", |
| 73 "boto.cloudformation", "boto.sts", "boto.dynamodb", | 73 "boto.cloudformation", "boto.sts", "boto.dynamodb", |
| 74 "boto.swf", "boto.mws", "boto.cloudsearch", "boto.glacier", | 74 "boto.swf", "boto.mws", "boto.cloudsearch", "boto.glacier", |
| 75 "boto.beanstalk", "boto.datapipeline", "boto.elasticache", | 75 "boto.beanstalk", "boto.datapipeline", "boto.elasticache", |
| 76 "boto.elastictranscoder", "boto.opsworks", "boto.redshift", | 76 "boto.elastictranscoder", "boto.opsworks", "boto.redshift", |
| 77 "boto.dynamodb2", "boto.support", "boto.cloudtrail", | 77 "boto.dynamodb2", "boto.support", "boto.cloudtrail", |
| 78 "boto.directconnect", "boto.kinesis"], | 78 "boto.directconnect", "boto.kinesis", "boto.rds2", |
| 79 package_data = {"boto.cacerts": ["cacerts.txt"]}, | 79 "boto.cloudsearch2"], |
| 80 package_data = { |
| 81 "boto.cacerts": ["cacerts.txt"], |
| 82 "boto": ["endpoints.json"], |
| 83 }, |
| 80 license = "MIT", | 84 license = "MIT", |
| 81 platforms = "Posix; MacOS X; Windows", | 85 platforms = "Posix; MacOS X; Windows", |
| 82 classifiers = ["Development Status :: 5 - Production/Stable", | 86 classifiers = ["Development Status :: 5 - Production/Stable", |
| 83 "Intended Audience :: Developers", | 87 "Intended Audience :: Developers", |
| 84 "License :: OSI Approved :: MIT License", | 88 "License :: OSI Approved :: MIT License", |
| 85 "Operating System :: OS Independent", | 89 "Operating System :: OS Independent", |
| 86 "Topic :: Internet", | 90 "Topic :: Internet", |
| 87 "Programming Language :: Python :: 2", | 91 "Programming Language :: Python :: 2", |
| 88 "Programming Language :: Python :: 2.5", | 92 "Programming Language :: Python :: 2.5", |
| 89 "Programming Language :: Python :: 2.6", | 93 "Programming Language :: Python :: 2.6", |
| 90 "Programming Language :: Python :: 2.7"], | 94 "Programming Language :: Python :: 2.7"], |
| 91 **extra | 95 **extra |
| 92 ) | 96 ) |
| OLD | NEW |