-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 870 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 870 Bytes
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "http-range-reader"
version = "0.1.0"
description = "Minimal HTTP byte-range reader (2-chunk LRU + prefetch) for random access streaming."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Saeed Rev" }]
dependencies = [
"requests>=2.31",
]
[project.urls]
Homepage = "https://github.com/<YOUR_GH_USER>/http-range-reader"
Issues = "https://github.com/<YOUR_GH_USER>/http-range-reader/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=5.0",
"flake8>=7.0",
"mypy>=1.10",
"types-requests",
]
[tool.pytest.ini_options]
addopts = "-q"
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
[tool.flake8]
max-line-length = 100