-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (71 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
84 lines (71 loc) · 2.12 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
80
81
82
83
84
[project]
name = "wildedge-sdk"
version = "0.1.2"
description = "On-device ML inference monitoring for Python"
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
license = { file = "LICENSE" }
authors = [
{ name = "WildEdge", email = "wildedge@googlegroups.com" },
]
keywords = ["machine learning", "inference", "monitoring", "observability", "edge ai", "mlops", "on-device"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://wildedge.dev"
Source = "https://github.com/wild-edge/wildedge-python"
Changelog = "https://github.com/wild-edge/wildedge-python/releases"
[project.scripts]
wildedge = "wildedge.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/scripts",
"/examples",
]
[tool.hatch.build.targets.wheel]
packages = ["wildedge"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "TID252"]
ignore = ["E501"] # line-length is set above
[tool.ruff.lint.per-file-ignores]
"wildedge/decorators.py" = ["N801"] # track is a decorator class, not following CapWords
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.isort]
[tool.pytest.ini_options]
testpaths = ["tests"]
log_level = "ERROR"
asyncio_mode = "auto"
markers = [
"requires_linux: test only on Linux",
"requires_macos: test only on macOS",
"requires_windows: test only on Windows",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=0.25",
"pytest-mock>=3.15.1",
"ruff>=0.15.4",
"tox",
"coverage",
]