1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Requirements file for local development
-r compat-requirements.txt
# Packaging
pip ~= 25.2.0; python_version >= "3.9"
setuptools == 80.9.0; python_version >= "3.9"
build ~= 1.3.0; python_version >="3.9"
twine == 6.2.0; python_version >= "3.9"
# Testing
tox >= 4.5.1.1, <= 4.31.0; python_version >= "3.10"
-r tests/requirements.txt
# Checking
pylint == 3.3.9; python_version >= "3.9"
astroid == 3.3.11; python_version >= "3.9"
flake8 == 7.3.0; python_version >= "3.9"
black[colorama] ~= 25.9.0; python_version >= "3.9"
isort[colors] >= 6.1.0, <= 7.0.0; python_version >= "3.10"
# mypy ~= 1.18.2; python_version >= "3.9"
# Management
invoke ~= 2.2.1; python_version >= "3.6"
# IPython
ipython >= 7.20; python_version >= "3.7"
Sphinx ~= 8.2.3; python_version >= "3.11"
furo ~= 2025.9.25
# cloud_sptheme ~= 1.10.1
-e .
# vim: ft=requirements
|