From ad40fb7c480ef675e3bb6b2420c7d54550eaa7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Chwalisz?= Date: Fri, 11 Nov 2016 01:02:18 +0100 Subject: [PATCH] removed unused dependencies (tox, sphinx theme) --- .gitignore | 7 +++---- setup.py | 2 +- tox.ini | 34 ---------------------------------- 3 files changed, 4 insertions(+), 39 deletions(-) delete mode 100644 tox.ini diff --git a/.gitignore b/.gitignore index 484619e..7430f4d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,13 +4,12 @@ _build/ dist/ *.egg-info/ *.egg +.eggs/ *.py[cod] __pycache__/ *.so *~ +.coverage -# due to using tox and pytest -.tox +# due to using pytest .cache - -thingspeak/__version__.py diff --git a/setup.py b/setup.py index 44a6b52..baa24ae 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ packages=find_packages(exclude=['contrib', 'docs', 'tests']), install_requires=['requests', 'docopt'], extras_require={ - 'dev': ['check-manifest', 'tox', 'sphinx', 'sphinx_bootstrap_theme'], + 'dev': ['check-manifest', 'sphinx'], }, setup_requires=['pytest-runner', 'pycodestyle'], tests_require=['pytest', 'pycodestyle', 'responses'], diff --git a/tox.ini b/tox.ini deleted file mode 100644 index a7d65f2..0000000 --- a/tox.ini +++ /dev/null @@ -1,34 +0,0 @@ -# this file is *not* meant to cover or endorse the use of tox or pytest or -# testing in general, -# -# It's meant to show the use of: -# -# - check-manifest -# confirm items checked into vcs are in your sdist -# - python setup.py check (using the readme extension) -# confirms your long_descrition will render correctly on pypi -# -# and also to help confirm pull requests to this project. - -[tox] -envlist = py{27,33,34} - -[testenv] -basepython = - py27: python2.7 - py33: python3.3 - py34: python3.4 -deps = - check-manifest - {py27,py33,py34}: readme - flake8 - pytest -commands = - check-manifest --ignore tox.ini,tests* - # py26 doesn't have "setup.py check" - {py27,py33,py34}: python setup.py check -m -r -s - flake8 . - py.test tests -[flake8] -exclude = .tox,*.egg,build,data -select = E,W,F