-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 813 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
37
38
39
[project]
name = "rsl"
version = "0.1.0"
authors = [
{ name = "pythoninthegrass", email = "4097471+pythoninthegrass@users.noreply.github.com" }
]
requires-python = ">=3.13,<3.14"
dependencies = [
"httpx>=0.28.1,<1.0",
"python-decouple>=3.8",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"ruff>=0.15.5",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
python_classes = "Test*"
asyncio_mode = "auto"
markers = [
"unit: marks tests as unit tests",
"integration: marks tests as integration tests",
"e2e: marks tests as end-to-end tests",
"benchmark: marks performance benchmark tests"
]
[project.scripts]
rsl = "rsl:main"
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"