Skip to content

Commit b92ecd1

Browse files
fix: add pytest pythonpath to pyproject by reviewer-A
1 parent 290af43 commit b92ecd1

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ requires = ["setuptools>=68.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "devforge"
6+
name = "devforge-tools"
77
version = "0.3.0"
88
description = "Unified CLI for 10 developer tools: API contracts, SQL generation, infra diffs, config drift, API mocking, key management, env syncing, schema conversion, MCP servers, and dead code removal"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
license = "MIT"
1212
authors = [{name = "DevForge"}]
13-
keywords = ["devforge", "cli", "devops", "developer-tools", "api-contract", "openapi", "json-to-sql", "infrastructure", "terraform", "cloudformation", "config-drift", "devsecops", "mocking", "api-keys", "env", "schema", "mcp", "dead-code"]
13+
keywords = ["devforge-tools", "devforge", "cli", "devops", "developer-tools", "api-contract", "openapi", "json-to-sql", "infrastructure", "terraform", "cloudformation", "config-drift", "devsecops", "mocking", "api-keys", "env", "schema", "mcp", "dead-code"]
1414
classifiers = [
1515
"Development Status :: 4 - Beta",
1616
"Intended Audience :: Developers",
@@ -26,7 +26,7 @@ dependencies = [
2626
"rich>=13.0.0",
2727
]
2828

29-
# Optional groups — install with: pip install devforge[all]
29+
# Optional groups install with: pip install devforge-tools[all]
3030
[project.optional-dependencies]
3131
guard = ["api-contract-guardian>=0.1.0"]
3232
sql = ["json2sql>=0.1.0"]
@@ -53,9 +53,9 @@ all = [
5353
dev = ["pytest>=7.0.0", "pyright>=1.1.300"]
5454

5555
[project.urls]
56-
Homepage = "https://github.com/Coding-Dev-Tools/devforge"
57-
Repository = "https://github.com/Coding-Dev-Tools/devforge"
58-
Issues = "https://github.com/Coding-Dev-Tools/devforge/issues"
56+
Homepage = "https://github.com/Coding-Dev-Tools/devforge-tools"
57+
Repository = "https://github.com/Coding-Dev-Tools/devforge-tools"
58+
Issues = "https://github.com/Coding-Dev-Tools/devforge-tools/issues"
5959

6060
[project.scripts]
6161
devforge = "devforge.cli:app"
@@ -66,6 +66,7 @@ where = ["src"]
6666
[tool.pytest.ini_options]
6767
testpaths = ["tests"]
6868
addopts = "-v --tb=short"
69+
pythonpath = ["src"]
6970
[tool.ruff]
7071
target-version = "py310"
7172
line-length = 120

0 commit comments

Comments
 (0)