-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 1.61 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wlanpi-core"
description = "backend services for the WLAN Pi"
requires-python = ">=3.13"
dynamic = ["version"]
authors = [
{name = "Josh Schmelzle", email = "josh@joshschmelzle.com"},
]
classifiers = [
"Natural Language :: English",
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3.13",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
]
dependencies = [
"fastapi",
"httpx",
"Jinja2",
"aiofiles",
"gunicorn",
"uvicorn",
"python-dotenv",
"pydantic-settings",
"requests",
"slowapi",
"Authlib",
"aiosqlite",
"sqlalchemy[asyncio]",
"alembic",
"websockets",
"psutil",
"dbus-python",
]
[project.license]
text = "BSD-3-Clause"
[project.optional-dependencies]
testing = [
"tox",
"black",
"isort",
"autoflake",
"mypy",
"flake8",
"pytest",
"pytest-asyncio",
"pytest-cov",
"genbadge[coverage]",
"pytest-mock",
"pydantic-settings",
]
[project.urls]
Documentation = "https://docs.wlanpi.com"
Source = "https://github.com/wlan-pi/wlanpi-core"
[project.scripts]
getjwt = "wlanpi_core.cli.getjwt:main"
networkcfg = "wlanpi_core.cli.network_config:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["wlanpi_core*"]
exclude = ["tests*"]
[tool.setuptools.dynamic]
version = {attr = "wlanpi_core.__version__.__version__"}
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"