From d1415d8bb76fd257135bf415b7a7364463c374a7 Mon Sep 17 00:00:00 2001 From: Mehdi Samsami Date: Thu, 12 Jun 2025 10:21:00 +0330 Subject: [PATCH 1/4] add project urls --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 709065a..7b1ea96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,11 @@ ruff = "<1.0.0" pre-commit = "*" isort = "*" +[project.urls] +Homepage = "https://github.com/msamsami/clonellm" +Repository = "https://github.com/msamsami/clonellm" +Issues = "https://github.com/msamsami/clonellm/issues" + [tool.mypy] exclude=["tests", "examples"] namespace_packages = false From 0f29dbfe07b8e31b398daed220c9021a7bfc16af Mon Sep 17 00:00:00 2001 From: Mehdi Samsami Date: Thu, 12 Jun 2025 10:21:47 +0330 Subject: [PATCH 2/4] add know first party config for isort --- pyproject.toml | 1 + src/clonellm/py.typed | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7b1ea96..bc4ddef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,3 +72,4 @@ line-length = 130 atomic = true profile = "black" skip_gitignore = true +known_first_party = ["clonellm"] diff --git a/src/clonellm/py.typed b/src/clonellm/py.typed index 01b29e1..5686005 100644 --- a/src/clonellm/py.typed +++ b/src/clonellm/py.typed @@ -1,2 +1,2 @@ # Marker file to instruct type checkers to look for inline type annotations in this package. -# See PEP 561 for more information. \ No newline at end of file +# See PEP 561 for more information. From 31307ccad742d475935efdd168e535c971e896b3 Mon Sep 17 00:00:00 2001 From: Mehdi Samsami Date: Thu, 12 Jun 2025 10:36:08 +0330 Subject: [PATCH 3/4] fix project urls specification --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bc4ddef..0cf891a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,10 +35,10 @@ ruff = "<1.0.0" pre-commit = "*" isort = "*" -[project.urls] -Homepage = "https://github.com/msamsami/clonellm" -Repository = "https://github.com/msamsami/clonellm" -Issues = "https://github.com/msamsami/clonellm/issues" +[tool.poetry.urls] +"Homepage" = "https://github.com/msamsami/clonellm" +"Repository" = "https://github.com/msamsami/clonellm" +"Issues" = "https://github.com/msamsami/clonellm/issues" [tool.mypy] exclude=["tests", "examples"] From 3012ade4f37e496ee0625a15b774cf9e2bcf8625 Mon Sep 17 00:00:00 2001 From: Mehdi Samsami Date: Thu, 12 Jun 2025 10:36:32 +0330 Subject: [PATCH 4/4] remove unnecessary black config --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0cf891a..0e1a2da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,9 +65,6 @@ filterwarnings = ["ignore"] include = ["*.py", "*.pyi", "**/pyproject.toml"] line-length = 130 -[tool.black] -line-length = 130 - [tool.isort] atomic = true profile = "black"