Move sphinx requirement from setup.py to venv in tox

This commit is contained in:
Dmitry Shulyak 2015-11-27 11:09:40 +02:00
parent f578a3f35c
commit 4462a99446
2 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,6 @@ setup(
zip_safe=False,
install_requires=find_requires(),
include_package_data=True,
setup_requires=['sphinx'],
entry_points={
'console_scripts': [
'solar = solar.cli.main:run']})

View File

@ -20,6 +20,7 @@ commands =
[testenv:venv]
deps = -r{toxinidir}/requirements.txt
sphinx
commands = {posargs:}
[testenv:devenv]