-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
73 lines (64 loc) · 1.99 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hawkapi-storage"
version = "0.2.0"
description = "File storage for HawkAPI — local, S3, GCS, Azure backends, pre-signed URLs, streaming uploads"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [
{ name = "HawkAPI Contributors", email = "hawkapi@users.noreply.github.com" },
]
keywords = ["hawkapi", "storage", "s3", "gcs", "azure", "upload", "files"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Filesystems",
"Typing :: Typed",
]
dependencies = ["hawkapi>=0.1.7"]
[project.optional-dependencies]
s3 = ["boto3>=1.34"]
gcs = ["google-cloud-storage>=2.14"]
azure = ["azure-storage-blob>=12.19"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"boto3>=1.34",
"ruff>=0.8",
"pyright>=1.1",
]
[project.urls]
Homepage = "https://pypi.org/project/hawkapi-storage/"
Repository = "https://github.com/Hawk-API/hawkapi-storage"
Issues = "https://github.com/Hawk-API/hawkapi-storage/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/hawkapi_storage"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "S"]
ignore = ["S101", "S110", "B008", "SIM105", "SIM108", "SIM113"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S"]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportMissingTypeStubs = false
reportUntypedFunctionDecorator = false
reportGeneralTypeIssues = false