forked from probert94/python-switchos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (32 loc) · 734 Bytes
/
pyproject.toml
File metadata and controls
33 lines (32 loc) · 734 Bytes
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
[project]
name = "python-switchos"
version = "0.0.8"
description = "Python library to interact with MikroTik SwitchOS and SwitchOS Lite"
authors = [
{ name = "Robert Pattis" },
]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"mikrotik",
"switchos",
"switchos lite",
"api",
]
dependencies = [
"demjson3>=3.0.6"
]
[project.optional-dependencies]
aiohttp = ["aiohttp >= 3.12"]
httpx = ["httpx >= 0.28"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.25"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[project.urls]
Homepage = "https://github.com/probert94/python-switchos"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"