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 35 36 37 38 39 40 41
|
name: pooch
channels:
- conda-forge
- defaults
dependencies:
- python==3.14
- pip
# Run
- requests
- packaging
- platformdirs
# Optional dependencies
- tqdm>=4.41.0,<5.0.0
- paramiko>=2.7.0
- python-xxhash>=1.4.3 # in conda-forge python-xxhash is the python pkg
- xxhash # this is the xxHash library in conda-forge
# Build
- python-build
# Test
- pytest
- pytest-cov
- pytest-localftpserver
- pytest-httpserver
- coverage
# Documentation
- sphinx==7.2.*
- sphinx-book-theme==1.1.*
- sphinx-design==0.5.*
# Style
- pathspec
- black==25.*.*
- flake8
- pylint>=2.4
# Types
- mypy
- types-requests
- types-tqdm
- types-paramiko
- types-xxhash
- pip:
- burocrata
|