-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (82 loc) · 1.89 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
[project]
name = "oldas"
version = "1.0.0"
description = "An async-friendly wrapper library for the API of TheOldReader"
readme = "README.md"
authors = [
{ name = "Dave Pearson", email = "davep@davep.org" }
]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.1",
]
license = "MIT"
keywords = [
"API",
"async",
"atom",
"client",
"Google Reader",
"library",
"RSS",
"TheOldReader",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://oldas.davep.dev/"
Repository = "https://github.com/davep/oldas"
Documentation = "https://oldas.davep.dev/"
Source = "https://github.com/davep/oldas"
Issues = "https://github.com/davep/oldas/issues"
Discussions = "https://github.com/davep/oldas/discussions"
[build-system]
requires = ["uv_build>=0.9.2"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[dependency-groups]
dev = [
"codespell>=2.4.1",
"mkdocs-autorefs>=1.4.3",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.0",
"mypy>=1.18.2",
"pre-commit>=4.3.0",
"pytest>=9.0.2",
"ruff>=0.14.0",
]
[tool.pyright]
venvPath="."
venv=".venv"
exclude=[".venv"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120