project scaffolding

This commit is contained in:
Jörn-Michael Miehe 2024-04-30 10:52:12 +02:00
parent c8f58e8d6e
commit 99aba16152
21 changed files with 20 additions and 19 deletions

View file

@ -1,20 +1,30 @@
{ {
"python.languageServer": "Pylance", "python.languageServer": "Pylance",
"[python]": { "[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.wordBasedSuggestions": "off",
"editor.defaultFormatter": "ms-python.black-formatter", "editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.organizeImports": "explicit" "source.organizeImports": "explicit",
"source.fixAll": "explicit",
}, },
}, },
"git.closeDiffOnOperation": true, "git.closeDiffOnOperation": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.importFormat": "relative",
"python.analysis.fixAll": [
"source.convertImportFormat",
"source.unusedImports",
],
"python.analysis.typeCheckingMode": "basic", "python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace", "python.analysis.diagnosticMode": "workspace",
"python.testing.unittestEnabled": false, "python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true, "python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [ "python.testing.pytestArgs": [
"--import-mode=importlib" "--import-mode=importlib",
], ],
"black-formatter.importStrategy": "fromEnvironment", "black-formatter.importStrategy": "fromEnvironment",
"flake8.importStrategy": "fromEnvironment", "flake8.importStrategy": "fromEnvironment",
"isort.importStrategy": "fromEnvironment",
} }

View file

@ -1 +0,0 @@
kiwi-scp/README.md

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# kiwi-scp
> `kiwi` - simple, consistent, powerful
The simple tool for managing container servers

View file

@ -1 +0,0 @@
../_common/.devcontainer

View file

@ -1 +0,0 @@
../_common/.flake8

View file

@ -1 +0,0 @@
../_common/.isort.cfg

View file

@ -1 +0,0 @@
../_common/.vscode

View file

@ -1 +0,0 @@
../_common/.devcontainer

View file

@ -1 +0,0 @@
../_common/.flake8

View file

@ -1 +0,0 @@
../_common/.isort.cfg

View file

@ -1 +0,0 @@
../_common/.vscode

View file

@ -1,5 +0,0 @@
# kiwi-scp
> `kiwi` - simple, consistent, powerful
The simple tool for managing container servers

View file

@ -11,9 +11,9 @@ develop = true
[package.source] [package.source]
type = "directory" type = "directory"
url = "../kiwi-core" url = "core"
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = "^3.9" python-versions = "^3.9"
content-hash = "daa3a0a80c900e2c198fd5d5c312db186c787f85c78e314648658ea38b26bdf1" content-hash = "bdf1cd785d9c108e14728e88e69313a3b4c776b05cf300b3737bc586b3f4d728"

View file

@ -7,7 +7,7 @@ authors = ["Jörn-Michael <40151420+ldericher@users.noreply.github.com>"]
readme = "README.md" readme = "README.md"
[tool.poetry.dependencies] [tool.poetry.dependencies]
kiwi-scp-core = {path="../kiwi-core", develop=true} kiwi-scp-core = {path="core", develop=true}
python = "^3.9" python = "^3.9"
[tool.poetry.scripts] [tool.poetry.scripts]