# HG changeset patch # User drewp@bigasterisk.com # Date 1648799041 25200 # Node ID a547c300bd6eb3d0d82ee6241a47a63123bc0014 # Parent 0f532eb9136467fe3362bce5f67a9727931ff945 project cleanup diff -r 0f532eb91364 -r a547c300bd6e .vscode/settings.json --- a/.vscode/settings.json Thu Mar 31 23:49:08 2022 -0700 +++ b/.vscode/settings.json Fri Apr 01 00:44:01 2022 -0700 @@ -2,9 +2,8 @@ "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.enabled": true, - "python.pythonPath": "/home/drewp/.local/share/virtualenvs/environment-l9Nv7hqc/bin/python", "python.formatting.provider": "yapf", - "files.watcherExclude": { - "_darcs_old/**": true - } + + "python.autoComplete.extraPaths": ["__pypackages__/3.9/lib"], + "python.analysis.extraPaths": ["__pypackages__/3.9/lib"] } diff -r 0f532eb91364 -r a547c300bd6e pyproject.toml --- a/pyproject.toml Thu Mar 31 23:49:08 2022 -0700 +++ b/pyproject.toml Fri Apr 01 00:44:01 2022 -0700 @@ -1,7 +1,6 @@ [project] name = "" version = "" -description = "" authors = [ {name = "Drew Perttula", email = "drewp@bigasterisk.com"}, ] @@ -17,11 +16,6 @@ ] requires-python = ">=3.9" -[project.urls] -Homepage = "" - -[tool.pdm] - [tool.pdm.overrides] cyclone = "1.3" twisted = "22.2.0" diff -r 0f532eb91364 -r a547c300bd6e pyrightconfig.json --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pyrightconfig.json Fri Apr 01 00:44:01 2022 -0700 @@ -0,0 +1,3 @@ +{ + "exclude": ["__pypackages__"] +}