diff options
-rw-r--r-- | python/requirements.txt | 2 | ||||
-rw-r--r-- | python/tidy/setup.py | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/python/requirements.txt b/python/requirements.txt index 58726e8f5ca..4a2d9bbd480 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -9,7 +9,7 @@ toml == 0.9.1 # For Python linting flake8 == 2.4.1 pep8 == 1.5.7 -pyflakes == 0.8.0 +pyflakes == 0.8.1 # For test-webidl ply == 3.8 diff --git a/python/tidy/setup.py b/python/tidy/setup.py index 958e5dd55c5..5b280fb21a4 100644 --- a/python/tidy/setup.py +++ b/python/tidy/setup.py @@ -49,4 +49,9 @@ if __name__ == '__main__': package_data={}, install_requires=install_requires, zip_safe=False, + entry_points={ + 'console_scripts': [ + 'servo-tidy=servo_tidy.tidy:scan' + ], + }, ) |