Add files for pipenv support

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
This commit is contained in:
2018-01-28 10:56:06 +02:00
parent 8faf9cd4d8
commit 67c4320607
2 changed files with 271 additions and 0 deletions

20
Pipfile Normal file
View File

@ -0,0 +1,20 @@
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
ansible = "*"
ansible-lint = "*"
[dev-packages]
[requires]
python_version = "2.7"