We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f0d635 commit 1d4f788Copy full SHA for 1d4f788
pyproject.toml
@@ -27,7 +27,8 @@ classifiers = [
27
dependencies = [
28
'typer',
29
'loguru',
30
- 'rich'
+ 'rich',
31
+ "pyperclip>=1.9.0",
32
]
33
34
[project.scripts]
@@ -38,6 +39,14 @@ Documentation = "https://github.com/danlsn/dander#readme"
38
39
Issues = "https://github.com/danlsn/dander/issues"
40
Source = "https://github.com/danlsn/dander"
41
42
+[project.optional-dependencies]
43
+dev = [
44
+ 'black',
45
+]
46
+dbt = [
47
+ 'dbt-core',
48
49
+
50
[tool.hatch.version]
51
path = "src/dander/__about__.py"
52
@@ -70,3 +79,8 @@ exclude_lines = [
70
79
"if __name__ == .__main__.:",
71
80
"if TYPE_CHECKING:",
72
81
82
83
+[dependency-groups]
84
85
+ "black>=24.8.0",
86
0 commit comments