Metadata-Version: 2.1
Name: jarpyvscode
Version: 0.3.9
Summary: Python backend for Jamil Raichouni's personal Visual Studio Code Extension jamilraichouni.jarpyvscode
Home-page: https://jar1.gitlab.io/jarpyvscode
License: MIT
Author: Jamil Raichouni
Author-email: raichouni@gmail.com
Maintainer: Jamil Raichouni
Maintainer-email: raichouni@gmail.com
Requires-Python: >=3.9.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: click
Requires-Dist: cookiecutter
Requires-Dist: json5
Requires-Dist: loguru
Requires-Dist: pandas
Requires-Dist: psutil
Project-URL: Documentation, https://jar1.gitlab.io/jarpyvscode
Project-URL: Repository, https://gitlab.com/jar1/jarpyvscode
Description-Content-Type: text/markdown

# jarpyvscode

![pipeline status](https://gitlab.com/jar1/jarpyvscode/badges/master/pipeline.svg)
![coverage report](https://gitlab.com/jar1/jarpyvscode/badges/master/coverage.svg)
![flake8](https://gitlab.com/jar1/jarpyvscode/-/jobs/artifacts/master/raw/badges/flake8.svg?job=flake8)
![mypy](https://gitlab.com/jar1/jarpyvscode/-/jobs/artifacts/master/raw/badges/mypy.svg?job=mypy)
![black](https://gitlab.com/jar1/jarpyvscode/-/jobs/artifacts/master/raw/badges/black.svg?job=black)
![isort](https://gitlab.com/jar1/jarpyvscode/-/jobs/artifacts/master/raw/badges/isort.svg?job=isort)

## Documentation

Find the docs at https://jar1.gitlab.io/jarpyvscode

## Steps to create project

### Create blank Visual Studio Code extension

```bash
cd ~/repos
yo code

# ? What type of extension do you want to create? (Use arrow keys)
# ❯ New Extension (TypeScript)

# ? What's the name of your extension? ()
# ❯ jarpyvscode

# ? What's the identifier of your extension? (jarpyvscode)
# ❯ jarpyvscode

# ? What's the description of your extension? ()
# ❯ Jamil Raichouni's personal Visual Studio Code Extension

# ? Initialize a git repository? (Y/n) n

# ? Bundle the source code with webpack? (y/N) y

# ? Which package manager to use? (Use arrow keys)
# ❯ npm
#   yarn

cd jarpyvscode
git init
touch .gitignore

```

Put the following into the `.gitignore`:

```bash
.vscode-test/
dist/
node_modules/
out/

*.vsix

```

### Version control

Before we continue, we store the fresh extension in an VCS.

```bash
git remote add origin git@gitlab.com:jar1/jarpyvscode.git
git add .
git commit -m "Initial commit"

```

### Initialise Python poetry project

```bash
poetry init

# Package name [jarpyvscode]:
# ❯ jarpyvscode

# Would you like to define your main dependencies interactively? (yes/no) [yes]
# ❯ no

# Would you like to define your development dependencies interactively? (yes/no) [yes]
# ❯ no
```

Add dependencies:

```bash
poetry add click json5 pandas psutil loguru
poetry add --dev black doc8 flake8 flake8-builtins flake8-docstrings flake8-isort flake8-quotes flake8-rst-docstrings isort jupyter notebook pydocstyle pytest pytest-cov pytest-xdist Sphinx sphinx-autobuild sphinx-rtd-theme
```

---

WE RECOMMEND INCLUDING THE FOLLOWING SECTIONS:

## Features

Describe specific features of your extension including screenshots of your extension in
action. Image paths are relative to this README file.

For example if there is an image subfolder under your extension project workspace:

\!\[feature X\]\(images/feature-x.png\)

> Tip: Many popular extensions utilize animations. This is an excellent way to show off
> your extension! We recommend short, focused animations that are easy to follow.

## Requirements

If you have any requirements or dependencies, add a section describing those and how to
install and configure them.

## Extension Settings

Include if your extension adds any VS Code settings through the
`contributes.configuration` extension point.

For example:

This extension contributes the following settings:

- `myExtension.enable`: enable/disable this extension
- `myExtension.thing`: set to `blah` to do something

## Known Issues

Calling out known issues can help limit users opening duplicate issues against your
extension.

## Release Notes

see `CHANGELOG.md`

---

## Following extension guidelines

Ensure that you've read through the extensions guidelines and follow the best practices
for creating your extension.

- [Extension Guidelines](https://code.visualstudio.com/api/references/extension-guidelines)

```

```

