-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
71 lines (61 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "unifi-discovery"
version = "1.2.0"
description = "Discover Unifi Devices"
authors = ["J. Nick Koston <nick@koston.org>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/uilibs/unifi-discovery"
documentation = "https://unifi-discovery.readthedocs.io"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
packages = [
{ include = "unifi_discovery" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/uilibs/unifi-discovery/issues"
"Changelog" = "https://unifi-discovery.readthedocs.io/changelog.html"
[tool.poetry.dependencies]
python = "^3.9"
# Documentation Dependencies
Sphinx = {version = "^5.0.0", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
myst-parser = {version = ">=0.17.0", optional = true}
pyroute2 = ">=0.6.5"
aiohttp = ">=3.8.0"
[tool.poetry.extras]
docs = [
"myst-parser",
"sphinx",
"sphinx-rtd-theme",
]
[tool.poetry.dev-dependencies]
black = "^22.3"
flake8 = "^4.0.0"
isort = "^5.10.1"
pytest = "^6.1.2"
pytest-cov = "^3.0.0"
pyupgrade = "^2.29.1"
tox = "^3.20.1"
pytest-asyncio = "^0.17.2"
aioresponses = "^0.7.3"
[tool.semantic_release]
branch = "main"
version_toml = "pyproject.toml:tool.poetry.version"
version_variable = "unifi_discovery/__init__.py:__version__"
build_command = "pip install poetry && poetry build"
[tool.pytest.ini_options]
addopts = "-v -Wdefault --cov=unifi_discovery --cov-report=term-missing:skip-covered"
[tool.coverage.run]
branch = true
[tool.isort]
profile = "black"
known_first_party = ["unifi_discovery", "tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"