-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.59 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
58
59
60
61
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "runcue"
version = "0.3.0"
description = "A Python library for coordinating work across rate-limited services"
readme = "README.md"
requires-python = ">=3.9,<3.15"
license = "MIT"
keywords = ["queue", "orchestration", "rate-limit", "async", "task"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: AsyncIO",
]
dependencies = [
"aiosqlite>=0.19.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
]
sim = [
"rich>=13.0",
]
[project.scripts]
runcue-sim = "runcue_sim.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/runcue", "src/runcue_sim"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = [
"E501", # Line too long (handled by formatter)
"SIM105", # Use contextlib.suppress - try-except-pass is clearer for adding logging
"SIM103", # Return condition directly - explicit if/return is often clearer
"SIM110", # Use all() - for loop is clearer when debugging
]