File: requirements.txt

package info (click to toggle)
python-fs 2.4.16-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,060 kB
  • sloc: python: 13,155; makefile: 226; sh: 3
file content (18 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# the bare requirements for running tests

# pyftpdlib is needed to spawn a FTP server for the
# FTPFS test suite
pyftpdlib ~=1.5

# these are optional dependencies for pyftpdlib that
# are not explicitly listed, we need to install these
# ourselves
psutil ~=5.0
pysendfile ~=2.0 ; python_version <= "3.3"

# mock is only available from Python 3.3 onward, and 
# mock v4+ doesn't support Python 2.7 anymore
mock ~=3.0 ; python_version < "3.3"

# parametrized to prevent code duplication in tests.
parameterized ~=0.8