summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorRoberto Berto <roberto.berto@gmail.com>2023-11-21 11:31:15 -0300
committerRoberto Berto <roberto.berto@gmail.com>2023-11-21 11:31:15 -0300
commit10949e4fd6360babf61c2ccdf44ab5e24b512226 (patch)
treee9886661280b523df17a0d3ef7f74d767d814f72 /pyproject.toml
parentc724a620bd5e2b5233b2b3518bc47164a5fd562b (diff)
downloadpyvyos-10949e4fd6360babf61c2ccdf44ab5e24b512226.tar.gz
pyvyos-10949e4fd6360babf61c2ccdf44ab5e24b512226.zip
Initial commit for retrieve_config feature
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..8c24c2f
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,17 @@
+[build-system]
+requires = ["setuptools", "wheel"]
+build-backend = "setuptools.build_meta"
+
+[tool.poetry]
+name = "vyapi"
+version = "0.1.0"
+description = "Python SDK for interacting with VyOS API"
+authors = ["Roberto Berto <roberto.berto@gmail.com>"]
+
+[tool.poetry.dependencies]
+python = ">=3.8,<4.0"
+requests = "^2.25.1"
+python-dotenv = "^1.0.0"
+
+[tool.poetry.dev-dependencies]
+pytest = "^6.2.2"