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] [list]
format=columns format=columns

View File

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