Distribution: Remove unneeded setup_requires

With the new project layout, `pyyaml` is not needed anymore for parsing
setup.py.
This commit is contained in:
Adrien Vergé
2016-01-24 17:53:19 +01:00
parent dbbecb5875
commit 5ed496f471
2 changed files with 4 additions and 7 deletions

View File

@@ -45,8 +45,6 @@ setup(
scripts=['bin/yamllint'],
package_data={'yamllint': ['conf/*.yml']},
install_requires=['pyyaml'],
setup_requires=['pyyaml'], # importing `yamllint` (for APP_NAME etc.)
# requires importing `yaml`
tests_require=['nose'],
test_suite='nose.collector',
)