-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "prompster"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"agentory[openai]>=0.4.0",
"click>=8.3.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"python-dotenv>=1.2.2",
"qrcode[pil]>=8.2",
"questionary>=2.1.1",
"rich-click>=1.9.7",
"spotifyify>=0.2.0",
"transcriptify[mic]>=0.1.0",
"typst>=0.14.8",
]
[dependency-groups]
dev = [
"pytest>=8.4.1,<9",
"pytest-asyncio>=1.1.0,<2",
"ruff>=0.13.1",
"pre-commit>=4.3.0",
]
[project.scripts]
prompster = "prompster.cli.app:cli"
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = ["E","F","I","UP","B","SIM","PL","RUF","C90"]
ignore = [
"E501", # line too long
"E402", # imports not at top of file
"PLC0415", # import should be at top-level
"PLR2004", # magic values
"PLR0911", # too many return statements
"PLR0912", # too many branches
"PLR0913", # too many arguments
"PLR0915", # too many statements
"C901", # function too complex
"RUF006", # create_task return value not stored
"PLW0603", # global statement
"PLW2901", # loop variable overwritten
"RUF001", # en dash, etc.
"UP046", # derive from generic base class
]