Skip to content

Commit 1d4f788

Browse files
committed
feat: add package extra definition to pyproject.toml
1 parent 9f0d635 commit 1d4f788

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

pyproject.toml

+15-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ classifiers = [
2727
dependencies = [
2828
'typer',
2929
'loguru',
30-
'rich'
30+
'rich',
31+
"pyperclip>=1.9.0",
3132
]
3233

3334
[project.scripts]
@@ -38,6 +39,14 @@ Documentation = "https://github.com/danlsn/dander#readme"
3839
Issues = "https://github.com/danlsn/dander/issues"
3940
Source = "https://github.com/danlsn/dander"
4041

42+
[project.optional-dependencies]
43+
dev = [
44+
'black',
45+
]
46+
dbt = [
47+
'dbt-core',
48+
]
49+
4150
[tool.hatch.version]
4251
path = "src/dander/__about__.py"
4352

@@ -70,3 +79,8 @@ exclude_lines = [
7079
"if __name__ == .__main__.:",
7180
"if TYPE_CHECKING:",
7281
]
82+
83+
[dependency-groups]
84+
dev = [
85+
"black>=24.8.0",
86+
]

0 commit comments

Comments
 (0)