-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.81 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "jqueue"
dynamic = ["version"]
description = "Storage-agnostic job queue using object storage with compare-and-set semantics"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "JB", email = "janbjorge@gmail.com" }]
keywords = ["queue", "job-queue", "object-storage", "s3", "gcs", "async", "asyncio"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Distributed Computing",
"Typing :: Typed",
]
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.0",
]
[project.urls]
Homepage = "https://github.com/janbjorge/jqueue"
Repository = "https://github.com/janbjorge/jqueue"
Issues = "https://github.com/janbjorge/jqueue/issues"
[project.optional-dependencies]
s3 = ["aioboto3>=13.0"]
gcs = ["google-cloud-storage>=2.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"aioboto3>=13.0",
"google-cloud-storage>=2.0",
"ruff",
"mypy",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.mypy]
strict = true
python_version = "3.12"
[[tool.mypy.overrides]]
module = ["aioboto3", "aioboto3.*", "google.cloud.storage", "google.cloud.*", "google.api_core", "google.api_core.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["jqueue._version"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_untyped_defs = false
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "jqueue/_version.py"