diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 971dbc3a..9a4e307d 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,7 @@ "recommendations": [ "ms-python.black-formatter", "ms-python.isort", + "ms-python.pylint", "ms-python.vscode-pylance" ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 4ba0139c..044ce9e6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,20 +6,18 @@ "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true }, - "python.testing.pytestArgs": ["tests"], - "python.testing.pytestEnabled": true, - "python.testing.unittestEnabled": false, - "rust-analyzer.linkedProjects": [ - "./src/secrets/Cargo.toml" - ], "python.analysis.extraPaths": [ "./src/core", "./src/zos_console", "./src/zos_files", "./src/zos_jobs", - "./src/zosmf", - "./src/zos_tso" + "./src/zos_tso", + "./src/zosmf" ], - "python.linting.enabled": true, - "python.linting.pylintEnabled": true, + "python.testing.pytestArgs": ["tests"], + "python.testing.pytestEnabled": true, + "python.testing.unittestEnabled": false, + "rust-analyzer.linkedProjects": [ + "./src/secrets/Cargo.toml" + ] } diff --git a/requirements.txt b/requirements.txt index cd3bf105..3a3561c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,35 +1,22 @@ -black -certifi==2024.7.4 -chardet==4.0.0 -colorama==0.4.5 commentjson==0.9.0 -coverage==5.4 deepmerge==1.1.0 -idna==3.7 -importlib-metadata==3.6.0;python_version<"3.8" -isort jsonschema==4.17.3 -lxml==4.9.3 -maturin -mccabe==0.7.0 -nose2==0.10.0 -pycodestyle==2.9.0 -pydocstyle==5.1.1 -pydoclint==0.5.3 -pyfakefs -pylama==7.7.1 -pylint==3.2.5 -pytest==7.4.4 -python-decouple==3.4 PyYAML==6.0.1 requests==2.32.0 -six==1.15.0 -snowballstemmer==2.1.0 -typing-extensions==4.0.1 -Unidecode==1.2.0 -urllib3==1.26.19 + +# Dev deps +black +coverage +isort +maturin +pydoclint +pydocstyle +pyfakefs +pylint +pytest wheel -zipp==3.19.1 + +# Local deps -e ./src/core[secrets] -e ./src/secrets -e ./src/zos_console @@ -37,4 +24,3 @@ zipp==3.19.1 -e ./src/zos_jobs -e ./src/zos_tso -e ./src/zosmf -