Skip to content

Commit 31cc1bf

Browse files
author
hah23255
committed
chore: update GitHub URLs and fix ruff configuration
- Update repository URLs to hah23255/aec-rag-system - Fix ruff configuration structure (lint section) - Add B904 to ignore list for exception handling
1 parent b543580 commit 31cc1bf

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pyproject.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
requires-python = ">=3.9"
1111
license = {text = "MIT"}
1212
authors = [
13-
{name = "Your Name", email = "your.email@example.com"}
13+
{name = "hah23255", email = "your.email@example.com"}
1414
]
1515
keywords = ["RAG", "AEC", "GraphRAG", "LLM", "CAD", "architecture"]
1616
classifiers = [
@@ -24,10 +24,10 @@ classifiers = [
2424
]
2525

2626
[project.urls]
27-
Homepage = "https://github.com/yourusername/aec-rag-system"
28-
Documentation = "https://github.com/yourusername/aec-rag-system/docs"
29-
Repository = "https://github.com/yourusername/aec-rag-system"
30-
Issues = "https://github.com/yourusername/aec-rag-system/issues"
27+
Homepage = "https://github.com/hah23255/aec-rag-system"
28+
Documentation = "https://github.com/hah23255/aec-rag-system/tree/main/docs"
29+
Repository = "https://github.com/hah23255/aec-rag-system"
30+
Issues = "https://github.com/hah23255/aec-rag-system/issues"
3131

3232
# =============================================================================
3333
# Tool Configurations
@@ -54,6 +54,8 @@ extend-exclude = '''
5454
[tool.ruff]
5555
line-length = 100
5656
target-version = "py39"
57+
58+
[tool.ruff.lint]
5759
select = [
5860
"E", # pycodestyle errors
5961
"W", # pycodestyle warnings
@@ -67,6 +69,7 @@ ignore = [
6769
"E501", # line too long (handled by black)
6870
"B008", # do not perform function calls in argument defaults
6971
"C901", # too complex
72+
"B904", # raise from exception
7073
]
7174
exclude = [
7275
".bzr",

0 commit comments

Comments
 (0)