mirror of
https://github.com/beetbox/beets.git
synced 2025-12-08 09:34:23 +01:00
add bs4 dependency
and reorder reps list alphabetically for readability
This commit is contained in:
parent
cf6a15df95
commit
f122e2a966
2 changed files with 10 additions and 8 deletions
9
setup.py
9
setup.py
|
|
@ -85,12 +85,13 @@ setup(
|
|||
+ (['ordereddict'] if sys.version_info < (2, 7, 0) else []),
|
||||
|
||||
tests_require=[
|
||||
'responses',
|
||||
'pyechonest',
|
||||
'mock',
|
||||
'beautifulsoup4',
|
||||
'flask',
|
||||
'rarfile',
|
||||
'mock',
|
||||
'pyechonest',
|
||||
'pylast',
|
||||
'rarfile',
|
||||
'responses',
|
||||
],
|
||||
|
||||
# Plugin (optional) dependencies:
|
||||
|
|
|
|||
9
tox.ini
9
tox.ini
|
|
@ -8,13 +8,14 @@ envlist = py26, py27, pypy, docs, flake8
|
|||
|
||||
[testenv]
|
||||
deps =
|
||||
nose
|
||||
mock
|
||||
pylast
|
||||
beautifulsoup4
|
||||
flask
|
||||
responses
|
||||
mock
|
||||
nose
|
||||
pyechonest
|
||||
pylast
|
||||
rarfile
|
||||
responses
|
||||
commands =
|
||||
nosetests {posargs}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue