diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2025-05-14 14:35:24 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2025-05-14 14:36:00 +0300 |
| commit | 9fe5d3a2b988769c449d02cce318ca349ae7affc (patch) | |
| tree | 4d689bcd7bb8558bb7c0834a95c6c45d3165e68c /pyproject.toml | |
| parent | 38fa726b51b830f23dcb529e56b32a031a4a9877 (diff) | |
Prepare for packaging
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f41761c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "femtoqueue" +version = "0.1.1" +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"] |
