mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-03 01:50:11 +00:00

- Deleted old setup files `requirements.txt`, `setup.cfg`, `setup.py`, `MANIFEST.in` - Added poetry files `poetry.toml`, `pyproject.toml`, `poetry.lock` - Added `.pyenv-version` and `.tool-versions` for `pyenv` and `asdf` - Updated `Makefile`, `CONTRIBUTING.rst`, `tox.ini`
26 lines
460 B
INI
26 lines
460 B
INI
[tox]
|
|
isolated_build = true
|
|
envlist = py38, py39, py310, py311, pypy3, flake8
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.8: py38
|
|
3.9: py39
|
|
3.10: py310
|
|
3.11: py311
|
|
pypy-3.9-7.3.12: pypy3
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}:{toxinidir}/pipreqs
|
|
commands = python -m unittest discover
|
|
|
|
[flake8]
|
|
exclude =
|
|
tests/_data/
|
|
tests/_data_clean/
|
|
tests/_data_duplicated_deps/
|
|
tests/_data_ignore/
|
|
tests/_invalid_data/
|
|
max-line-length = 120
|