summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorRoberto Bertó <141527866+bertogravscale@users.noreply.github.com>2023-11-21 14:18:43 -0300
committerGitHub <noreply@github.com>2023-11-21 14:18:43 -0300
commit606df1053e0e36cb9fa50378c484187715adc3fe (patch)
tree4f47eec5d9c582c12470fbd91d9a4ad2490375b1 /pyproject.toml
parentc724a620bd5e2b5233b2b3518bc47164a5fd562b (diff)
parentae98f19358bb47285c22b901c8153eeed79210e3 (diff)
downloadpyvyos-606df1053e0e36cb9fa50378c484187715adc3fe.tar.gz
pyvyos-606df1053e0e36cb9fa50378c484187715adc3fe.zip
Merge pull request #1 from gravscale/feature/retrieve_show_config
Feature/retrieve show config
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..355a077
--- /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.1"
+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"