1234567891011121314151617181920212223242526272829303132333435363738394041 |
- [[source]]
- url = "https://pypi.org/simple"
- verify_ssl = true
- name = "pypi"
- [packages]
- Jinja2 = "*"
- msgpack-python = ">0.3,!=0.5.5"
- PyYAML = "*"
- MarkupSafe = "*"
- requests = ">=1.0.0"
- tornado = ">=4.2.1,<5.0"
- pycrypto = ">=2.6.1"
- pyzmq = ">=2.2.0"
- [dev-packages]
- mock = ">=2.0.0"
- apache-libcloud = ">=0.14.0"
- boto = ">=2.32.1"
- boto3 = ">=1.2.1"
- moto = ">=0.3.6"
- SaltPyLint = ">=v2017.3.6"
- pytest = ">=4.0.1"
- pytest-cov = "*"
- pytest-salt = "==2018.12.8"
- pytest-timeout = ">=1.3.3"
- pytest-tempdir = ">=2018.8.11"
- pytest-helpers-namespace = ">=2017.11.11"
- [packages.futures]
- # Required by Tornado to handle threads stuff.
- version = ">=2.0"
- markers = "python_version < '3.0'"
- [dev-packages.httpretty]
- # httpretty Needs to be here for now even though it's a dependency of boto.
- # A pip install on a fresh system will decide to target httpretty 0.8.10 to
- # satisfy other requirements, and httpretty 0.8.10 has bugs in setup.py that
- # prevent it from being successfully installed (at least on Python 3.4).
- version = "*"
- markers = "python_version >= '3.4'"
|