Skip to content

Commit

Permalink
commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
franneck94 committed May 11, 2023
0 parents commit 2f6ea78
Show file tree
Hide file tree
Showing 6 changed files with 160 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode
*.vsix
package-lock.json
63 changes: 63 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Python Extension Pack Change Log

## Version 1.1.0, May 04 2023

- **Info**: Rekoved flake8

## Version 1.0.0, April 21 2023

- **Info**: Added:
- "ms-python.flake8"
- "charliermarsh.ruff"

## Version 0.9.0

- **Info**: Added isort and black

## Version 0.8.0

- **Info**: Removed isort

## Version 0.7.0

- **Info**: Added the following extensions:
- PyInit
- Python Type Hint
- CPython Extension Pack
- isort

## Version 0.6.0

- **Info**: Dropped cython highlighting extension

## Version 0.5.1

- **Bugfix**: Added Missing Python Config Generator

## Version 0.5.0

- **Feature**: Added Python Config Generator

## Version 0.4.0

- **Feature**: Added TOML highlighting extension

## Version 0.3.0

- **Feature**: Removed test explorer due to update of VSCode and the Python extension itself

## Version 0.2.1

- **Bugfix**: Fixed Python Test Adapter Name

## Version 0.2.0

- **Feature**: Added cython extension

## Version 0.1.1

- **Info**: Fixed typos

## Version 0.1.0

- **Info**: Initial release
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Jan Schaffranek

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Python Extension Pack

These are the most useful VSCode Python extensions.

## Extensions Included

* MS Extensions:
* [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) - Microsoft Python Extension for Language Support.
* [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance) - Microsoft Pylance Extension for Code Analysis.
* [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) - Notebook support for language kernels that are supported in Jupyter Notebooks today.
* [isort](https://marketplace.visualstudio.com/items?itemName=ms-python.isort) - Provides import sorting using isort.
* [black](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter) - Support for the black formatter.

* Extension by me:
* [Python Config](https://marketplace.visualstudio.com/items?itemName=franneck94.vscode-python-config) - Creates all needed config files for simple Python projects.
* [CPython Extension Pack](https://marketplace.visualstudio.com/items?itemName=franneck94.vscode-cpython-extension-pack) - VSCode extensions for CPython and Cython developement.

* Extensions by Others:
* [Ruff](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) - For the Ruff linter.
* [Python Docstring Generator](https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring) - This extension generates docstrings for python functions.
* [TOML Highlighting](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml) - A TOML language support extension.
* [PyInit](https://marketplace.visualstudio.com/items?itemName=DiogoNolasco.pyinit) - Generates __init__.py files inside your folders and subfolders.
* [Python Type Hint](https://marketplace.visualstudio.com/items?itemName=njqdev.vscode-python-typehint) - Provides type hint auto-completion for Python.

## Want to see an extension added?

Open a PR and I'd be happy to take a look.

**Enjoy!**
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "vscode-python-dev-extension-pack",
"displayName": "Python Dev Extension Pack",
"description": "Extensions for Python development.",
"version": "1.2.0",
"publisher": "franneck94",
"engines": {
"vscode": "^1.78.0"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#222222",
"theme": "dark"
},
"keywords": [
"python",
"jupyter",
"docstrings"
],
"categories": [
"Extension Packs"
],
"repository": {
"url": "https://github.com/franneck94/vscode-python-dev-extension-pack"
},
"homepage": "https://github.com/franneck94/vscode-python-dev-extension-pack",
"bugs": {
"url": "https://github.com/franneck94/vscode-python-dev-extension-pack/issues"
},
"extensionPack": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"ms-python.isort",
"ms-toolsai.jupyter",
"charliermarsh.ruff",
"franneck94.vscode-python-config",
"franneck94.vscode-cpython-extension-pack",
"njpwerner.autodocstring",
"tamasfe.even-better-toml",
"DiogoNolasco.pyinit",
"njqdev.vscode-python-typehint"
]
}

0 comments on commit 2f6ea78

Please sign in to comment.