-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 880 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
[project]
name = "gospeed-api"
version = "2.0.6"
description = "Default template for PDM package"
authors = [
{name = "tick97115115", email = "32931796+tick97115115@users.noreply.github.com"},
]
dependencies = [
"pydantic>=2.8.2",
"requests>=2.32.3",
"httpx>=0.27.0",
"trio>=0.26.0",
"anyio>=4.4.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
test_sync = "pytest -k TestClassGospeedClientInstance -s"
test_async = "pytest -k TestClassAsyncGospeedClientInstance -s"
test_sync_delete_all = "pytest -k TestClassGospeedClientInstance_DeleteAllTasks -s"
test_async_delete_all = "pytest -k TestClassAsyncGospeedClientInstance_DeleteAllTasks -s"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.2.2",
]