forked from ValvePython/steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (72 loc) · 2.05 KB
/
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
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
[project]
name = "steam"
dependencies = [
"cachetools>=5.5.0",
"pycryptodomex>=3.21.0",
"vdf",
"protobuf>=5.29.2",
"websockets>=14.1",
"aiohttp>=3.11.11",
"lxml>=5.3.0",
]
requires-python = ">=3.11"
dynamic = ["version"]
authors = [
{name = "Rossen Georgiev", email = "[email protected]"},
{name = "Solstice Game Studios", email = "[email protected]"},
{name = "Arama", email = "[email protected]"}
]
description = "Module for interacting with various Steam features"
readme = "README.rst"
license = {file = "LICENSE"}
keywords = ["valve", "steam", "steamid", "api", "webapi", "steamcommunity"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Natural Language :: Chinese (Simplified)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[dependency-groups]
dev = [
"coverage>=7.6.9",
"coveralls>=4.0.1",
"mock>=5.1.0",
"pytest-cov>=6.0.0",
"pyyaml>=6.0.2",
"rich>=13.9.4",
"ruff>=0.8.3",
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.0.2",
"vcrpy>=6.0.2",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.uv.sources]
vdf = { git = "https://github.com/solsticegamestudios/vdf.git", rev = "v4.0" }
[tool.uv.workspace]
members = ["examples/login", "examples/simple_web_api", "examples/wallet_balance"]
[tool.setuptools.dynamic]
version = {attr = "steam.__version__"}
[tool.coverage.run]
branch = false
omit = ["src/steam/protobufs/*", "src/steam/enums/*"]
relative_files = true
[tool.ruff]
line-length = 100
preview = true
fix = true
exclude = ["src/steam/protobufs", "src/steam/enums/proto.py"]
[tool.ruff.lint]
select = ["E", "W", "F", "N", "I"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true