vscode, setuptools

This commit is contained in:
Michael J Clark
2025-02-20 22:57:11 +00:00
committed by GitHub
parent 5e5e6582d3
commit bb74fcee72
2 changed files with 26 additions and 3 deletions
+6 -3
View File
@@ -27,10 +27,13 @@ dependencies = [
dev = [
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"pytest>=8.0.2",
"ruff>=0.8.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["{{ cookiecutter.project_name.lower().replace(' ', '_') }}"]
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${currentFile}",
"console": "integratedTerminal",
"justMyCode": false,
"autoReload": {
"enabled": true,
"exclude": ["**/site-packages/**"]
}
}
]
}