summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Berto <roberto.berto@gmail.com>2023-11-21 14:17:57 -0300
committerRoberto Berto <roberto.berto@gmail.com>2023-11-21 14:17:57 -0300
commitae98f19358bb47285c22b901c8153eeed79210e3 (patch)
tree4f47eec5d9c582c12470fbd91d9a4ad2490375b1
parent10949e4fd6360babf61c2ccdf44ab5e24b512226 (diff)
downloadpyvyos-ae98f19358bb47285c22b901c8153eeed79210e3.tar.gz
pyvyos-ae98f19358bb47285c22b901c8153eeed79210e3.zip
rename vy_device to device
-rw-r--r--pyproject.toml2
-rw-r--r--setup.py2
-rw-r--r--vyapi/__init__.py3
3 files changed, 4 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 8c24c2f..355a077 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[tool.poetry]
name = "vyapi"
-version = "0.1.0"
+version = "0.1.1"
description = "Python SDK for interacting with VyOS API"
authors = ["Roberto Berto <roberto.berto@gmail.com>"]
diff --git a/setup.py b/setup.py
index d85cfe2..302f29c 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='vyapi',
- version='0.1.0',
+ version='0.1.1',
description='Python SDK for interacting with VyOS API',
author='Roberto Berto',
author_email='roberto.berto@gmail.com',
diff --git a/vyapi/__init__.py b/vyapi/__init__.py
index ccabc52..7c327e5 100644
--- a/vyapi/__init__.py
+++ b/vyapi/__init__.py
@@ -1 +1,2 @@
-from .vy_device import VyDevice
+from .device import VyDevice
+from .device import ApiResponse \ No newline at end of file