-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 2.05 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
# SPDX-FileCopyrightText: Contributors to PyPSA-Eur <https://github.com/pypsa/pypsa-eur>
#
# SPDX-License-Identifier: MIT
[project]
name = "snakemake-storage-plugin-cached-http"
dynamic = ["version"]
description = "Snakemake storage plugin for downloading files via HTTP with caching and rate limiting"
authors = [
{ name = "PyPSA-Eur Authors", email = "jonas.hoersch@openenergytransition.org" },
]
readme = "README.md"
license = "MIT"
keywords = ["snakemake", "plugin", "storage", "http", "cache"]
requires-python = ">=3.11"
dependencies = [
"httpx ~= 0.27",
"platformdirs ~= 4.0",
"reretry ~= 0.11",
"snakemake-interface-common >=1.14,<2.0",
"snakemake-interface-storage-plugins >=4.2,<5.0",
"tqdm-loggable ~= 0.3",
"typing-extensions ~= 4.15",
"zstandard ~=0.25.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
homepage = "https://github.com/pypsa/pypsa-eur"
repository = "https://github.com/pypsa/pypsa-eur"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project.entry-points."snakemake_storage_plugins"]
cached-http = "snakemake_storage_plugin_cached_http:StorageProvider"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"asyncio: mark test as an asyncio test",
]
[tool.pytest_asyncio]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.setuptools_scm]
[dependency-groups]
dev = [
"humanfriendly>=10.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"snakemake>=9.13.4",
]
[tool.basedpyright]
reportImplicitStringConcatenation = false
ignore = ["tests", "src/snakemake_storage_plugin_cached_http/monkeypatch.py"]
reportUnusedCallResult = false
reportAny = false
reportMissingTypeStubs = false