1
0

Pipfile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. Jinja2 = "*"
  7. msgpack-python = ">0.3,!=0.5.5"
  8. PyYAML = "*"
  9. MarkupSafe = "*"
  10. requests = ">=1.0.0"
  11. tornado = ">=4.2.1,<5.0"
  12. pycrypto = ">=2.6.1"
  13. pyzmq = ">=2.2.0"
  14. [dev-packages]
  15. mock = ">=2.0.0"
  16. apache-libcloud = ">=0.14.0"
  17. boto = ">=2.32.1"
  18. boto3 = ">=1.2.1"
  19. moto = ">=0.3.6"
  20. SaltPyLint = ">=v2017.3.6"
  21. pytest = ">=4.0.1"
  22. pytest-cov = "*"
  23. pytest-salt = "==2018.12.8"
  24. pytest-timeout = ">=1.3.3"
  25. pytest-tempdir = ">=2018.8.11"
  26. pytest-helpers-namespace = ">=2017.11.11"
  27. [packages.futures]
  28. # Required by Tornado to handle threads stuff.
  29. version = ">=2.0"
  30. markers = "python_version < '3.0'"
  31. [dev-packages.httpretty]
  32. # httpretty Needs to be here for now even though it's a dependency of boto.
  33. # A pip install on a fresh system will decide to target httpretty 0.8.10 to
  34. # satisfy other requirements, and httpretty 0.8.10 has bugs in setup.py that
  35. # prevent it from being successfully installed (at least on Python 3.4).
  36. version = "*"
  37. markers = "python_version >= '3.4'"