diff --git a/.vscode/launch.json b/.vscode/launch.json index 00ad47c..ed7e123 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "Python-Modul", "type": "python", "request": "launch", - "module": "newscorpus.scrape", + "module": "newscorpus.main", "justMyCode": true } ] diff --git a/newscorpus/scrape.py b/newscorpus/main.py similarity index 100% rename from newscorpus/scrape.py rename to newscorpus/main.py diff --git a/pyproject.toml b/pyproject.toml index 7cc45ab..8c263f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,4 +25,4 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] -scrape = "newscorpus.scrape:init" \ No newline at end of file +scrape = "newscorpus.main:init" \ No newline at end of file