diff options
author | Roberto Berto <roberto.berto@gmail.com> | 2023-11-21 14:17:57 -0300 |
---|---|---|
committer | Roberto Berto <roberto.berto@gmail.com> | 2023-11-21 14:17:57 -0300 |
commit | ae98f19358bb47285c22b901c8153eeed79210e3 (patch) | |
tree | 4f47eec5d9c582c12470fbd91d9a4ad2490375b1 | |
parent | 10949e4fd6360babf61c2ccdf44ab5e24b512226 (diff) | |
download | pyvyos-ae98f19358bb47285c22b901c8153eeed79210e3.tar.gz pyvyos-ae98f19358bb47285c22b901c8153eeed79210e3.zip |
rename vy_device to device
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | vyapi/__init__.py | 3 |
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>"] @@ -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 |