-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 2.02 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
[project]
name = "transistorsoft-loganalyzer"
version = "0.1.4"
description = "Triage Background Geolocation SDK logs: parse an iOS or Android capture into a redacted digest and an interactive map"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Transistor Software", email = "chris@transistorsoft.com" }]
keywords = ["background-geolocation", "logs", "triage", "gps", "diagnostics"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Debuggers",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"pyahocorasick>=2.1",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/transistorsoft/loganalyzer"
Repository = "https://github.com/transistorsoft/loganalyzer"
Issues = "https://github.com/transistorsoft/loganalyzer/issues"
"Background Geolocation SDK" = "https://github.com/transistorsoft/react-native-background-geolocation"
[project.scripts]
loganalyzer = "loganalyzer.cli:main"
# Alias matching the distribution name. `uvx <pkg>` only resolves an executable
# whose name equals the package name, so without this the shorthand fails with
# "The executable `transistorsoft-loganalyzer` was not found" — which no local
# testing can catch, because locally you always run `loganalyzer` directly.
transistorsoft-loganalyzer = "loganalyzer.cli:main"
[dependency-groups]
dev = [
"pytest>=8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/loganalyzer"]
[tool.hatch.build.targets.sdist]
# Fixtures ship: they are what makes the test suite runnable from a clone.
include = ["src/loganalyzer", "tests", "README.md", "LICENSE", "pyproject.toml"]
[tool.pytest.ini_options]
testpaths = ["tests"]