-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
84 lines (78 loc) · 2.31 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
78
79
80
81
82
83
84
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "fluxqueue"
dynamic = ["version"]
description = "A lightweight, resource-efficient, high-throughput task queue for Python, written in Rust."
readme = "README.md"
requires-python = ">=3.11,<3.15"
keywords = ["task-queue", "queue", "redis", "async", "background-tasks", "worker", "rust", "fluxqueue"]
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Giorgi Merebashvili", email = "mereba2627@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Distributed Computing",
]
[project.urls]
Homepage = "https://fluxqueue.ccxlv.dev"
Repository = "https://github.com/CCXLV/fluxqueue"
Documentation = "https://fluxqueue.ccxlv.dev"
Issues = "https://github.com/CCXLV/fluxqueue/issues"
Changelog = "https://github.com/CCXLV/fluxqueue/releases"
[project.optional-dependencies]
dev = ["ruff"]
tests = [
"pytest-asyncio",
"python-dotenv",
"redis"
]
cli = [
"fluxqueue-cli>=0.1.0b4"
]
docs = [
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python",
]
build = ["maturin"]
[tool.maturin]
module-name = "fluxqueue._core"
python-source = "python"
manifest-path = "crates/fluxqueue-core/Cargo.toml"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
"N", # pep8-naming
"SIM", # flake8-simplify
"RUF", # ruff-specific rules
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # complexity
"N806", # variable in function should be lowercase (allows CamelCase for pydantic models)
]
exclude = [".git", ".ruff_cache", ".venv"]