-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
82 lines (70 loc) · 1.88 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
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["flit_core>=3.2", "flit_scm", "wheel"]
build-backend = "flit_scm:buildapi"
[project]
name = "ssdp"
authors = [
{ name = "Johannes Maron", email = "johannes@maron.family" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["ssdp", "python", "asyncio", "upnp", "iot"]
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: AsyncIO",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries",
"Topic :: Home Automation",
]
requires-python = ">=3.8"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
cli = [
"click",
"Pygments",
]
pygments = ["Pygments"]
[project.scripts]
ssdp = "ssdp:__main__.ssdp"
[project.entry-points."pygments.lexers"]
ssdp = "ssdp.lexers:SSDPLexer"
[project.urls]
Project-URL = "https://github.com/codingjoe/ssdp"
Changelog = "https://github.com/codingjoe/ssdp/releases"
[tool.flit.module]
name = "ssdp"
[tool.setuptools_scm]
write_to = "ssdp/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov --tb=short -rxs"
testpaths = ["tests"]
[tool.coverage.run]
source = ["ssdp"]
[tool.coverage.report]
show_missing = true
[tool.isort]
atomic = true
line_length = 88
known_first_party = "ssdp, tests"
include_trailing_comma = true
default_section = "THIRDPARTY"
combine_as_imports = true
[tool.pydocstyle]
add_ignore = "D1"