Add yapf-diff command (#870)

* Add yapf-diff command

Modified https://github.com/llvm/llvm-project/blob/master/clang/tools/clang-format/clang-format-diff.py to work with yapf

* format with yapf 0.30.0

* Move script to third_party and add license
diff --git a/setup.py b/setup.py
index 21e9470..fe2a046 100644
--- a/setup.py
+++ b/setup.py
@@ -65,7 +65,10 @@
           'Topic :: Software Development :: Quality Assurance',
       ],
       entry_points={
-          'console_scripts': ['yapf = yapf:run_main'],
+          'console_scripts': [
+              'yapf = yapf:run_main',
+              'yapf-diff = yapf.third_party.yapf_diff.yapf_diff:main',
+          ],
       },
       cmdclass={
           'test': RunTests,