-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 1.83 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
[project]
name = "steam-fetcher"
description = "Typed Python client for Steam Store and Web API"
version = "0.1.1"
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
keywords = ["steam", "api", "pydantic", "async"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0.0",
"tenacity>=8.0.0",
]
[[project.authors]]
name = "cop1cat"
[project.urls]
Homepage = "https://github.com/cop1cat/steam-fetcher"
Repository = "https://github.com/cop1cat/steam-fetcher"
Issues = "https://github.com/cop1cat/steam-fetcher/issues"
Changelog = "https://github.com/cop1cat/steam-fetcher/blob/main/CHANGELOG.md"
[project.optional-dependencies]
async = [
"aiolimiter>=1.1.0",
]
parquet = [
"polars>=0.20.0",
]
sql = [
"sqlalchemy>=2.0.0",
]
cli = [
"typer>=0.12.0",
]
all = [
"aiolimiter>=1.1.0",
"polars>=0.20.0",
"sqlalchemy>=2.0.0",
"typer>=0.12.0",
]
docs = [
"mkdocs-material>=9.0.0",
"mkdocs-static-i18n>=1.0.0",
]
dev = [
"mkdocs-material>=9.0.0",
"mkdocs-static-i18n>=1.0.0",
"mypy>=1.19.1",
"pre-commit>=4.5.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"respx>=0.21.0",
"ruff>=0.15.4",
"typer>=0.12.0",
"aiolimiter>=1.1.0",
]
tests = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"respx>=0.21.0",
"typer>=0.12.0",
]
[project.scripts]
steam-fetcher = "steam_fetcher.cli._app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/steam_fetcher"]
[tool.hatch.build.targets.wheel.force-include]
"src/steam_fetcher/py.typed" = "steam_fetcher/py.typed"