servo: Merge #10653 - Cleanup tidy for external deps (from askeing:cleanup_tidy_for_external_deps); r=edunham

fix #10639

Source-Repo: https://github.com/servo/servo
Source-Revision: 4d80e0634ed58580a7d30fc7f57e6bdf4aa4e19d
This commit is contained in:
askeing
2016-04-19 01:51:01 +05:00
parent e81bf27c14
commit e3c99fddcd
7 changed files with 32 additions and 92 deletions

View File

@@ -11,9 +11,11 @@ import os
from setuptools import setup, find_packages
VERSION = '0.0.1'
VERSION = '0.0.2'
install_requires = [
"flake8==2.4.1",
"toml==0.9.1",
]
here = os.path.dirname(os.path.abspath(__file__))
@@ -47,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'
],
},
)