aboutsummaryrefslogtreecommitdiffstats
path: root/api-worker/pyproject.toml
diff options
context:
space:
mode:
authorOle Mathias Aa. Heggem <olemathias.aa.heggem@gmail.com>2025-04-13 07:18:45 +0200
committerGitHub <noreply@github.com>2025-04-13 07:18:45 +0200
commit4ea3a099b05fa910498bfbf1b2d7387118355472 (patch)
treec248cf6764412471ee3e0d1218761bee19fb396a /api-worker/pyproject.toml
parent09710c061d5b8ae86b3dfe49f4b8936c13a10535 (diff)
Upgrade bootstrap and rewrite API (#230)HEADmaster
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"