forked from vyos-contrib/pyvyos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyvyos"
version = "0.2.1"
authors = [
{ name="Roberto Berto", email="[email protected]" },
]
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 <[email protected]>"]
version = "0.2.1"
[tool.poetry.dependencies]
python = ">=3.8"
requests = "^2.31.0"
python-dotenv = "^1.0.1"