-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 893 Bytes
/
pyproject.toml
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
[project]
name = "tqu"
version = "1.0.2"
description = "A Minimal CLI for Queue-Based Task Tracking"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"click>=8.1.8",
"rich>=13.9.4",
]
[project.urls]
Homepage = "https://github.com/primaprashant/tqu"
Issues = "https://github.com/primaprashant/tqu/issues"
[project.scripts]
tqu = "tqu.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"tests/**",
"scripts/**",
"Makefile",
"uv.lock",
]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.4",
"ruff>=0.9.5",
]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "W", "TID", "PTH", "Q"]