Alan Orth
67c4320607
Pipenv is a new way to do Python virtual environments. I created the virtual environment here using: $ pipenv --two $ pipenv install ansible ansible-lint To use the virtual environment you enter the project directory and type: $ pipenv shell See: https://github.com/pypa/pipenv
21 lines
185 B
TOML
21 lines
185 B
TOML
[[source]]
|
|
|
|
url = "https://pypi.python.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
|
|
[packages]
|
|
|
|
ansible = "*"
|
|
ansible-lint = "*"
|
|
|
|
|
|
[dev-packages]
|
|
|
|
|
|
|
|
[requires]
|
|
|
|
python_version = "2.7"
|