Compare commits
1 Commits
master
...
5d3443e496
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d3443e496 |
3
pip.conf
3
pip.conf
@@ -1,5 +1,2 @@
|
|||||||
[global]
|
|
||||||
break-system-packages = true
|
|
||||||
|
|
||||||
[list]
|
[list]
|
||||||
format=columns
|
format=columns
|
||||||
|
|||||||
21
tasks.yaml
21
tasks.yaml
@@ -1,7 +1,10 @@
|
|||||||
---
|
---
|
||||||
- name: python install pip packages
|
- name: Python install pip packages
|
||||||
pip:
|
pip:
|
||||||
name:
|
name: '{{item}}'
|
||||||
|
state: latest
|
||||||
|
extra_args: --user
|
||||||
|
with_items:
|
||||||
- flake8
|
- flake8
|
||||||
- grip
|
- grip
|
||||||
- ipdb
|
- ipdb
|
||||||
@@ -10,18 +13,8 @@
|
|||||||
- pylint
|
- pylint
|
||||||
- python-gist
|
- python-gist
|
||||||
- yapf
|
- yapf
|
||||||
state: latest
|
|
||||||
extra_args: --user
|
|
||||||
|
|
||||||
- name: python create directories
|
- name: Python create symbolic links
|
||||||
file:
|
|
||||||
state: directory
|
|
||||||
dest: '{{item}}'
|
|
||||||
with_items:
|
|
||||||
- ~/.config/ipython/profile_default
|
|
||||||
- ~/.config/pip
|
|
||||||
|
|
||||||
- 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
|
||||||
|
|||||||
Reference in New Issue
Block a user