Skip to content

Commit 244d61b

Browse files
committed
Update extension information
1 parent 096c0c5 commit 244d61b

File tree

5 files changed

+28
-60
lines changed

5 files changed

+28
-60
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ All notable changes to the "poetry-python" extension will be documented in this
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7-
## [Unreleased]
7+
## [0.0.15]
88

9-
- Initial release
9+
- Initial release with support for pyproject.toml and Poetry

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
# poetry-python README
1+
# Python Dependencies VS Code extension
2+
3+
An extension for managing Python dependencies. At the moment it only supports pyproject.toml and Poetry.
4+
5+
![2021-02-28 16 40 01](https://user-images.githubusercontent.com/667029/109424385-b2d87780-79e3-11eb-85e9-6931063f4210.gif)
6+
7+
## Roadmap
8+
9+
- [ ] Add support for updating dependencies
10+
- [ ] Add support for requirements.txt
11+
- [ ] Add support for requirements.in (pip-compile)
12+
- [ ] Better support for checking if dependencies are the latest
13+
- [ ] Security warnings
14+
- [ ] Links to PyPI
15+
- [ ] Highlight unsecure dependencies

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-14
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
11
{
2-
"name": "poetry-python",
3-
"displayName": "Poetry Python",
4-
"description": "Utilities for Poetry",
5-
"version": "0.0.11",
2+
"name": "python-dependencies-vscode",
3+
"displayName": "Python Dependencies",
4+
"description": "Utilities for managing Python dependencies",
5+
"version": "0.0.15",
66
"publisher": "patrick91",
77
"engines": {
88
"vscode": "^1.53.0"
99
},
10+
"repository": {
11+
"url": "https://github.com/patrick91/python-dependencies-vscode"
12+
},
1013
"categories": [
11-
"Other"
14+
"Other",
15+
"Programming Languages"
1216
],
1317
"activationEvents": [
14-
"onCommand:poetry-python.helloWorld",
1518
"onLanguage:toml",
1619
"workspaceContains:pyproject.toml"
1720
],
1821
"main": "./out/extension.js",
19-
"contributes": {
20-
"commands": [
21-
{
22-
"command": "poetry-python.helloWorld",
23-
"title": "Hello World"
24-
}
25-
]
26-
},
2722
"scripts": {
2823
"vscode:prepublish": "npm run compile",
2924
"compile": "tsc -p ./",

vsc-extension-quickstart.md

-41
This file was deleted.

0 commit comments

Comments
 (0)