forked from Vaskivskyi/asusrouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "asusrouter"
version = "2.0.0.dev0"
license = {text = "Apache-2.0"}
requires-python = ">=3.11.0"
readme = "README.md"
description = "API wrapper for communication with ASUSWRT-powered routers using HTTP protocol"
authors = [
{ name="Yevhenii Vaskivskyi", email="[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"aiohttp >=3.8.1",
"python-dateutil ==2.8.2",
"urllib3 >=1.26.14",
"xmltodict >=0.12.0",
]
[project.urls]
"Source Code" = "https://github.com/Vaskivskyi/asusrouter"
"Bug Reports" = "https://github.com/Vaskivskyi/asusrouter/issues"
[tool.setuptools.packages.find]
include = ["asusrouter*"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]