blob: 68d80d5bb85c4529c8aaf3254cea9e61c371a90c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyvyos"
version = "0.2.0"
authors = [
{ name="Roberto Berto", email="463349+robertoberto@users.noreply.github.com" },
]
description = "Python SDK for interacting with VyOS API"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/gravscale/pyvyos"
Issues = "https://github.com/gravscale/pyvyos/issues"
[tool.hatch.metadata]
dependencies = [
"requests>=2.25.1,<3.0",
"python-dotenv>=1.0.0,<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.0"
[tool.poetry.dependencies]
python = ">=3.8"
requests = "^2.31.0"
python-dotenv = "^1.0.0"
|