Skip to content

Commit 64a3408

Browse files
authored
Add python version badges in README and add classisifers, keywords in pyproject.toml (#84)
* Add python version badges in README and benchmarks url * Add classifiers and keywords in pyporject.toml
1 parent 675b1ef commit 64a3408

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
**A blazingly fast, lightweight task queue for Python, written in Rust.**
88

9-
[Documentation](https://fluxqueue.ccxlv.dev)
9+
![Python versions](https://img.shields.io/badge/python-3.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-green)
10+
11+
[Documentation](https://fluxqueue.ccxlv.dev) · [Benchmarks](https://github.com/CCXLV/fluxqueue-benchmarks)
1012

1113
</div>
1214

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,28 @@ dynamic = ["version"]
88
description = "A blazingly fast, lightweight task queue for Python, written in Rust"
99
readme = "README.md"
1010
requires-python = ">=3.11,<3.15"
11+
keywords = ["task-queue", "queue", "redis", "async", "background-tasks", "worker", "rust", "fluxqueue"]
1112
license = "Apache-2.0"
1213
license-files = ["LICENSE"]
1314
authors = [
1415
{name = "Giorgi Merebashvili", email = "mereba2627@gmail.com"}
1516
]
17+
classifiers = [
18+
"Development Status :: 4 - Beta",
19+
"Intended Audience :: Developers",
20+
"License :: OSI Approved :: Apache License 2.0",
21+
"Programming Language :: Python",
22+
"Programming Language :: Python :: 3",
23+
"Programming Language :: Python :: 3 :: Only",
24+
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
28+
"Programming Language :: Rust",
29+
"Operating System :: POSIX :: Linux",
30+
"Topic :: Software Development :: Libraries",
31+
"Topic :: System :: Distributed Computing",
32+
]
1633

1734
[project.urls]
1835
Repository = "https://github.com/CCXLV/fluxqueue"

0 commit comments

Comments
 (0)