aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 04769afb686e1a482f8e098972959c8e61297abc (plain)
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
[project]
name = "femtoqueue"
version = "0.1.2"
description = "Ever wanted a zero-dependency, filesystem-backed, lock-free, durable, concurrent, retrying task queue implementation? No?"
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
authors = [{ name = "Jan Tuomi", email = "jan@jantuomi.fi" }]
classifiers = [
    "Programming Language :: Python :: 3",
    "Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/jantuomi/femtoqueue"
Issues = "https://github.com/jantuomi/femtoqueue/issues"

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
py-modules = ["femtoqueue"]