diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-24 18:10:13 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-24 18:42:43 -0400 |
| commit | 8a0273d15d17d0e00ba4bfa05ffe46d372f979e7 (patch) | |
| tree | df197fee491a035b228b388c15c7293d0a284b2e /requirements/dev.in | |
| parent | 76c1888d0b65035f9fbfc1fd31ae75c019fbb699 (diff) | |
| download | python-coveragepy-git-8a0273d15d17d0e00ba4bfa05ffe46d372f979e7.tar.gz | |
build: use pip-tools to manage *.pip from *.in
The requires.io site stopped working for me, and this is a more automated
process anyway.
Diffstat (limited to 'requirements/dev.in')
| -rw-r--r-- | requirements/dev.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/requirements/dev.in b/requirements/dev.in new file mode 100644 index 00000000..df834108 --- /dev/null +++ b/requirements/dev.in @@ -0,0 +1,26 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt + +# Requirements input for doing local development work on coverage.py. +# "make upgrade" turns this into requirements/dev.pip. + +-c pins.pip +-r pip.pip + +# PyPI requirements for running tests. +tox +-r pytest.pip + +# for linting. +greenlet +pylint +check-manifest +readme_renderer + +# for kitting. +requests +twine +libsass + +# Just so I have a debugger if I want it. +pudb |
