Skip to content

Commit

Permalink
python: add Pipfile
Browse files Browse the repository at this point in the history
  • Loading branch information
refack committed Jul 12, 2018
1 parent a098c6d commit c47aa6a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ setup/*/host_vars/release-*
ansible/host_vars/*
!ansible/host_vars/README.md
!ansible/host_vars/*-template
.venv
Pipfile.lock
14 changes: 14 additions & 0 deletions ansible/Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
ansible = "*"
"flake8" = "*"
"flake8-import-order" = "*"

[dev-packages]

[requires]
python_version = "3.6"
5 changes: 5 additions & 0 deletions ansible/tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[flake8]
exclude=.venv
max-line-length=110
import-order-style=google

0 comments on commit c47aa6a

Please sign in to comment.