Skip to content

Commit 32bebc6

Browse files
aksOpsclaude
andcommitted
Fix pyproject.toml: move dependencies back under [project] section
The [project.urls] section was inserted before dependencies, causing TOML to parse dependencies as a URL key. Reordered sections correctly. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 64355e7 commit 32bebc6

2 files changed

Lines changed: 1820 additions & 117 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@ classifiers = [
2020
"Topic :: Software Development :: Quality Assurance",
2121
]
2222
requires-python = ">=3.11"
23-
24-
[project.urls]
25-
Homepage = "https://github.com/RandomCodeSpace/code-iq"
26-
Documentation = "https://github.com/RandomCodeSpace/code-iq#readme"
27-
Repository = "https://github.com/RandomCodeSpace/code-iq"
28-
Issues = "https://github.com/RandomCodeSpace/code-iq/issues"
29-
Changelog = "https://github.com/RandomCodeSpace/code-iq/releases"
3023
dependencies = [
3124
"typer>=0.9",
3225
"rich>=13.0",
@@ -46,6 +39,13 @@ dependencies = [
4639
"fastmcp>=2.0",
4740
]
4841

42+
[project.urls]
43+
Homepage = "https://github.com/RandomCodeSpace/code-iq"
44+
Documentation = "https://github.com/RandomCodeSpace/code-iq#readme"
45+
Repository = "https://github.com/RandomCodeSpace/code-iq"
46+
Issues = "https://github.com/RandomCodeSpace/code-iq/issues"
47+
Changelog = "https://github.com/RandomCodeSpace/code-iq/releases"
48+
4949
[project.optional-dependencies]
5050
dev = [
5151
"pytest>=8.0",

0 commit comments

Comments
 (0)