-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.02 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
[project]
name = "feedscope"
version = "0.1.0"
description = "Explore feed content aggregated with feedbin"
readme = "README.md"
authors = [
{ name = "Brian Dennis", email = "bmd+github@crossjam.net" }
]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.1",
"loguru>=0.7.2",
"platformdirs>=4.0.0",
"pydantic-settings>=2.0.0",
"tomlkit>=0.12.0",
"typer>=0.16.1",
"rich>=14.1.0",
"hishel>=0.0.36",
"loguru-config",
]
[project.scripts]
feedscope = "feedscope:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"poethepoet>=0.32.2",
"pytest>=8.3.3",
"ruff>=0.7.3",
"ty==0.0.1a27",
]
[tool.poe.tasks]
lint = { cmd = "uv run ruff check src tests" }
format = { cmd = "uv run ruff format src tests" }
typecheck = { cmd = "uv run ty src/feedscope" }
test = { cmd = "uv run pytest" }
qa = { sequence = ["lint", "typecheck", "test"] }
[tool.uv.sources]
loguru-config = { git = "https://github.com/crossjam/loguru-config" }