aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: a199e4b20cd1a92ac582ffaebbac61669c3ef2d9 (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
26
27
28
[project]
name = "femtoqueue"
version = "0.1.4"
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" },
    { name = "Panu Oksiala", email = "panu@oksiala.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"]