project scaffolding
This commit is contained in:
parent
c8f58e8d6e
commit
99aba16152
21 changed files with 20 additions and 19 deletions
|
@ -1,20 +1,30 @@
|
|||
{
|
||||
"python.languageServer": "Pylance",
|
||||
"[python]": {
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"editor.formatOnSave": true,
|
||||
"editor.wordBasedSuggestions": "off",
|
||||
"editor.defaultFormatter": "ms-python.black-formatter",
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports": "explicit"
|
||||
"source.organizeImports": "explicit",
|
||||
"source.fixAll": "explicit",
|
||||
},
|
||||
},
|
||||
"git.closeDiffOnOperation": true,
|
||||
"python.analysis.autoImportCompletions": true,
|
||||
"python.analysis.importFormat": "relative",
|
||||
"python.analysis.fixAll": [
|
||||
"source.convertImportFormat",
|
||||
"source.unusedImports",
|
||||
],
|
||||
"python.analysis.typeCheckingMode": "basic",
|
||||
"python.analysis.diagnosticMode": "workspace",
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestEnabled": true,
|
||||
"python.testing.pytestArgs": [
|
||||
"--import-mode=importlib"
|
||||
"--import-mode=importlib",
|
||||
],
|
||||
"black-formatter.importStrategy": "fromEnvironment",
|
||||
"flake8.importStrategy": "fromEnvironment",
|
||||
"isort.importStrategy": "fromEnvironment",
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
kiwi-scp/README.md
|
5
README.md
Normal file
5
README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# kiwi-scp
|
||||
|
||||
> `kiwi` - simple, consistent, powerful
|
||||
|
||||
The simple tool for managing container servers
|
0
kiwi-core/poetry.lock → core/poetry.lock
generated
0
kiwi-core/poetry.lock → core/poetry.lock
generated
|
@ -1 +0,0 @@
|
|||
../_common/.devcontainer
|
|
@ -1 +0,0 @@
|
|||
../_common/.flake8
|
|
@ -1 +0,0 @@
|
|||
../_common/.isort.cfg
|
|
@ -1 +0,0 @@
|
|||
../_common/.vscode
|
|
@ -1 +0,0 @@
|
|||
../_common/.devcontainer
|
|
@ -1 +0,0 @@
|
|||
../_common/.flake8
|
|
@ -1 +0,0 @@
|
|||
../_common/.isort.cfg
|
|
@ -1 +0,0 @@
|
|||
../_common/.vscode
|
|
@ -1,5 +0,0 @@
|
|||
# kiwi-scp
|
||||
|
||||
> `kiwi` - simple, consistent, powerful
|
||||
|
||||
The simple tool for managing container servers
|
4
kiwi-scp/poetry.lock → poetry.lock
generated
4
kiwi-scp/poetry.lock → poetry.lock
generated
|
@ -11,9 +11,9 @@ develop = true
|
|||
|
||||
[package.source]
|
||||
type = "directory"
|
||||
url = "../kiwi-core"
|
||||
url = "core"
|
||||
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.9"
|
||||
content-hash = "daa3a0a80c900e2c198fd5d5c312db186c787f85c78e314648658ea38b26bdf1"
|
||||
content-hash = "bdf1cd785d9c108e14728e88e69313a3b4c776b05cf300b3737bc586b3f4d728"
|
|
@ -7,7 +7,7 @@ authors = ["Jörn-Michael <40151420+ldericher@users.noreply.github.com>"]
|
|||
readme = "README.md"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
kiwi-scp-core = {path="../kiwi-core", develop=true}
|
||||
kiwi-scp-core = {path="core", develop=true}
|
||||
python = "^3.9"
|
||||
|
||||
[tool.poetry.scripts]
|
Loading…
Reference in a new issue