Compare commits

..

1 Commits

Author SHA1 Message Date
5d3443e496 Move main.yaml to tasks.yaml 2021-11-19 22:09:39 +00:00
2 changed files with 12 additions and 22 deletions

View File

@@ -1,5 +1,2 @@
[global]
break-system-packages = true
[list]
format=columns

View File

@@ -1,27 +1,20 @@
---
- name: python install pip packages
- name: Python install pip packages
pip:
name:
- flake8
- grip
- ipdb
- ipython
- isort
- pylint
- python-gist
- yapf
name: '{{item}}'
state: latest
extra_args: --user
- name: python create directories
file:
state: directory
dest: '{{item}}'
with_items:
- ~/.config/ipython/profile_default
- ~/.config/pip
- flake8
- grip
- ipdb
- ipython
- isort
- pylint
- python-gist
- yapf
- name: python create symbolic links
- name: Python create symbolic links
file:
state: link
src: '{{item.src}}'
@@ -32,6 +25,6 @@
- src: ~/.config/python/pylintrc
dest: ~/.pylintrc
- src: ~/.config/python/ipython_config.py
dest: ~/.config/ipython/profile_default/ipython_config.py
dest: ~/.ipython/profile_default/ipython_config.py
- src: ~/.config/python/pip.conf
dest: ~/.config/pip/pip.conf