summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorRoberto Bertó <463349+robertoberto@users.noreply.github.com>2025-09-18 13:08:55 -0300
committerGitHub <noreply@github.com>2025-09-18 13:08:55 -0300
commit9a69a954a086df321640dfa65a2ac0ac35a15095 (patch)
tree3c8e41a08dab6e47e4639e09eebcc37c4549b914 /pyproject.toml
parent85e4714c53b662c45a1f6ee4b6cb0089ad29cc7b (diff)
parentf25d28ab90a266c03fd966ddabc752088da080d6 (diff)
downloadpyvyos-9a69a954a086df321640dfa65a2ac0ac35a15095.tar.gz
pyvyos-9a69a954a086df321640dfa65a2ac0ac35a15095.zip
Merge pull request #18 from eduardormorais/release/0.3.0
Updating version release 0.3.0
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml34
1 files changed, 28 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 6eee47d..1aa3254 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "pyvyos"
-version = "0.2.2"
+version = "0.3.0"
authors = [
{ name="Roberto Berto", email="463349+robertoberto@users.noreply.github.com" },
]
@@ -26,18 +26,40 @@ dependencies = [
"requests>=2.31.0,<3.0",
"python-dotenv>=1.0.1,<2.0"
]
-dev-dependencies = [
- "pytest>=6.2.2,<7.0"
-]
[tool.poetry]
name = "pyvyos"
description = "Python SDK for interacting with VyOS API"
authors = ["Roberto Berto <463349+robertoberto@users.noreply.github.com>"]
-version = "0.2.2"
+version = "0.3.0"
[tool.poetry.dependencies]
python = ">=3.8"
-requests = "^2.31.0"
+requests = "^2.32.0"
python-dotenv = "^1.0.1"
+[tool.poetry.group.dev.dependencies]
+pytest = "^6.2.5"
+pytest-cov = "^4.1.0"
+pytest-env = "^0.6.2"
+
+[tool.pytest.ini_options]
+testpaths = ["./tests"]
+log_cli = false
+log_cli_level = "DEBUG"
+filterwarnings = [
+ "ignore::DeprecationWarning:_pytest.assertion.rewrite",
+ "ignore::DeprecationWarning:ast"
+]
+env = [
+ "VYDEVICE_APIKEY='api_key'",
+ "VYDEVICE_HOSTNAME=192.168.56.100",
+ "VYDEVICE_PORT=443",
+ "VYDEVICE_PROTOCOL=https",
+ "VYDEVICE_VERIFY_SSL=False",
+]
+
+[tool.coverage.run]
+omit = [
+ "tests/*",
+] \ No newline at end of file