aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore5
-rw-r--r--.python-version1
-rw-r--r--README.md4
-rw-r--r--pyproject.toml25
4 files changed, 33 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 24a346b..755398c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,8 @@
*.pyc
venv/
+.venv/
profile.*
+dist/
+*.egg-info/
+__pycache__
+.envrc
diff --git a/.python-version b/.python-version
new file mode 100644
index 0000000..bd28b9c
--- /dev/null
+++ b/.python-version
@@ -0,0 +1 @@
+3.9
diff --git a/README.md b/README.md
index f61429e..4134c1a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# FemtoQueue
-Ever wanted a zero-dependency, filesystem-backed, durable, concurrent, retrying task queue implementation? No?
+Ever wanted a zero-dependency, filesystem-backed, lock-free, durable, concurrent, retrying task queue implementation? No?
## Example
@@ -50,4 +50,4 @@ python test.py
## Author and license
-Jan Tuomi <<jan@jantuomi.fi>>. Licensed under AGPL 3.0. All rights reserved.
+Jan Tuomi <<jan@jantuomi.fi>>. Licensed under Apache-2.0. All rights reserved.
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"]