-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 859 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tasktracker"
version = "1.0.0"
description = "Modular terminal task manager with live Rich UI and multi-worker support"
authors = [{name = "Sungur Zahid Erdim", email = "sungurerdim@gmail.com"}]
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = ["rich>=14.3.3"]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"ruff>=0.15.4",
]
[project.urls]
Homepage = "https://github.com/sungurerdim/tasktracker"
Repository = "https://github.com/sungurerdim/tasktracker"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]