summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: e90621bfdfc2dfd4485289faf38220e81c137bc4 (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.1"
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/robertoberto/pyvyos"
Issues = "https://github.com/robertoberto/pyvyos/issues"

[tool.hatch.metadata]
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.1"

[tool.poetry.dependencies]
python = ">=3.8" 
requests = "^2.31.0"  
python-dotenv = "^1.0.1"