-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1.02 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
[project]
name = "llsd-asgi"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["version"]
authors = [
{name = "Bennett Goble", email="[email protected]"},
]
dependencies = [
"llsd",
"starlette",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.urls]
"Homepage" = "https://github.com/secondlife/llsd-asgi"
[project.optional-dependencies]
dev = [
"pytest > 6",
"pytest-cov",
"pytest-asyncio",
"httpx",
]
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vv --cov=llsd_asgi --cov-report=xml --cov-report term-missing"
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.coverage.report]
fail_under = 100
[tool.pylint.exceptions]
max-line-length = 120