aboutsummaryrefslogtreecommitdiffstats
path: root/api-worker/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'api-worker/pyproject.toml')
-rw-r--r--api-worker/pyproject.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/api-worker/pyproject.toml b/api-worker/pyproject.toml
new file mode 100644
index 0000000..c8b3757
--- /dev/null
+++ b/api-worker/pyproject.toml
@@ -0,0 +1,25 @@
+[project]
+name = "api-worker"
+version = "0.1.0"
+description = ""
+authors = [
+ {name = "Ole Mathias Heggem",email = "olemathias.aa.heggem@gmail.com"}
+]
+readme = "README.md"
+requires-python = ">=3.11"
+dependencies = [
+ "pynetbox (>=7.4.1,<8.0.0)",
+ "redis[hiredis] (>=5.2.1,<6.0.0)",
+ "schedule (>=1.2.2,<2.0.0)",
+ "netaddr (>=1.3.0,<2.0.0)",
+ "requests (>=2.32.3,<3.0.0)",
+ "python-dotenv (>=1.1.0,<2.0.0)",
+ "black (>=25.1.0,<26.0.0)"
+]
+
+[tool.poetry]
+package-mode = false
+
+[build-system]
+requires = ["poetry-core>=2.0.0,<3.0.0"]
+build-backend = "poetry.core.masonry.api"