Include missing dependency requirements

Running `servo-tidy` in a virtualenv where all you've done is `pip install servo-tidy==0.3.0` doesn't actually work because of missing dependencies. PyYAML and voluptuous are required as well. I don't know anything about python package management but declaring these missing dependencies seems like an appropriate thing to do. Patch itself is untested because I don't know how, although with these dependencies installed in my virtualenv running `servo-tidy` works.
This commit is contained in:
Kartikaya Gupta (kats) 2019-05-15 11:22:05 -04:00 committed by GitHub
parent 576394b288
commit 7d658c990f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,8 @@ install_requires = [
"flake8==2.4.1",
"toml==0.9.2",
"colorama==0.3.7",
"voluptuous==0.11.5",
"PyYAML==5.1",
]
here = os.path.dirname(os.path.abspath(__file__))