-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (91 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
101 lines (91 loc) · 2.46 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kwork"
version = "0.2.0"
description = "Async, typed Python client for kwork.ru (aiohttp + Pydantic) with WebSocket bot and web-flow helpers."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [
{ name = "kesha1225" },
]
keywords = [
"kwork",
"kwork.ru",
"freelance",
"marketplace",
"api",
"async",
"asyncio",
"aiohttp",
"websocket",
"bot",
"pydantic",
"typed",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: AsyncIO",
"Typing :: Typed",
]
dependencies = [
"aiohttp>=3.13.3",
"pydantic>=2.12.5",
"websockets>=15.0.1",
]
[project.optional-dependencies]
proxy = [
"aiohttp-socks>=0.10.2",
]
[project.urls]
Homepage = "https://github.com/kesha1225/pykwork"
Repository = "https://github.com/kesha1225/pykwork"
Issues = "https://github.com/kesha1225/pykwork/issues"
Documentation = "https://github.com/kesha1225/pykwork/blob/HEAD/docs/index.md"
Changelog = "https://github.com/kesha1225/pykwork/blob/HEAD/CHANGELOG.md"
Security = "https://github.com/kesha1225/pykwork/blob/HEAD/SECURITY.md"
[tool.setuptools]
packages = ["kwork", "kwork.schema"]
[tool.setuptools.package-dir]
"" = "source"
[tool.setuptools.package-data]
# PEP 561 marker file so downstream type checkers pick up inline annotations.
kwork = ["py.typed"]
[tool.ruff]
target-version = "py312"
line-length = 100
[dependency-groups]
dev = [
"ruff>=0.14.7",
"basedpyright>=1.29.0",
"pytest>=8.0.0",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.26.0",
"pymdown-extensions>=10.8.0",
]
[tool.basedpyright]
pythonVersion = "3.12"
typeCheckingMode = "standard"
reportMissingTypeArgument = "warning"
reportUnknownArgumentType = false
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportAny = false
reportImplicitStringConcatenation = false
reportUnannotatedClassAttribute = false
[tool.pytest.ini_options]
# Keep credentialed integration checks out of default runs.
testpaths = ["tests"]