-
Notifications
You must be signed in to change notification settings - Fork 123
/
pyproject.toml
46 lines (40 loc) · 1.23 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "glean-sdk"
version = "63.0.0"
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
]
description = "Mozilla's Glean Telemetry SDK: The Machine that Goes 'Ping!'"
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [
{name = "The Glean Team", email = "glean-team@mozilla.com"}
]
dependencies = [
"semver>=2.13.0",
"glean_parser~=16.1",
"importlib_resources>=1.3; python_version=='3.8'"
]
[project.urls]
homepage = "https://mozilla.github.io/glean/"
repository = "https://github.com/mozilla/glean"
changelog = "https://mozilla.github.io/glean/book/appendix/changelog/sdk.html"
[tool.maturin]
python-source = "glean-core/python"
module-name = "glean._uniffi"
bindings = "uniffi"
manifest-path = "glean-core/bundle/Cargo.toml"
include = [{ path = "tools/embedded-uniffi-bindgen/**/*", format = "sdist" }]
[tool.coverage.run]
source = ["glean"]
[tool.ruff]
extend-exclude = ["glean-core/python/glean/_uniffi/glean.py"]
line-length = 100