Remove docs pip extra from setup.py

pull/2525/head
Kieran R. Prasch 2021-01-15 11:51:10 -08:00
parent 6c51627137
commit 714ddbeedd
1 changed files with 2 additions and 4 deletions

View File

@ -120,7 +120,6 @@ def read_requirements(path):
INSTALL_REQUIRES = read_requirements('requirements.txt') INSTALL_REQUIRES = read_requirements('requirements.txt')
DOCS_REQUIRE = read_requirements('docs-requirements.txt')
DEV_REQUIRES = read_requirements('dev-requirements.txt') DEV_REQUIRES = read_requirements('dev-requirements.txt')
BENCHMARK_REQUIRES = [ BENCHMARK_REQUIRES = [
@ -140,10 +139,9 @@ BOB_REQUIRES = ['qrcode']
EXTRAS = { EXTRAS = {
# Admin # Admin
'docs': DOCS_REQUIRE, 'dev': DEV_REQUIRES + URSULA_REQUIRES + ALICE_REQUIRES,
'dev': DEV_REQUIRES + DOCS_REQUIRE + URSULA_REQUIRES + ALICE_REQUIRES,
'benchmark': DEV_REQUIRES + BENCHMARK_REQUIRES, 'benchmark': DEV_REQUIRES + BENCHMARK_REQUIRES,
'deploy': DOCS_REQUIRE + DEPLOY_REQUIRES, 'deploy': DEPLOY_REQUIRES,
# User # User
'ursula': URSULA_REQUIRES, 'ursula': URSULA_REQUIRES,