-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path0002-Update-pyproject.toml.patch
More file actions
35 lines (34 loc) · 1017 Bytes
/
0002-Update-pyproject.toml.patch
File metadata and controls
35 lines (34 loc) · 1017 Bytes
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
Index: python3-prometheus-client/pyproject.toml
===================================================================
--- python3-prometheus-client.orig/pyproject.toml
+++ python3-prometheus-client/pyproject.toml
@@ -7,11 +7,7 @@ name = "prometheus_client"
version = "0.23.1"
description = "Python client for the Prometheus monitoring system."
readme = "README.md"
-license = "Apache-2.0 AND BSD-2-Clause"
-license-files = [
- "LICENSE",
- "NOTICE",
-]
+license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "The Prometheus Authors", email = "prometheus-developers@googlegroups.com" },
@@ -50,3 +46,17 @@ Documentation = "https://prometheus.gith
[tool.setuptools.package-data]
prometheus_client = ['py.typed']
+
+[tool.setuptools.data-files]
+"tests" = [
+ "tests/certs/*",
+ "tests/proc/stat",
+ "tests/proc/584/*",
+ "tests/proc/26231/limits",
+ "tests/proc/26231/stat",
+ "tests/proc/26231/fd/*",
+]
+
+[tool.setuptools.packages.find]
+where = ["."]
+exclude = ["debian"]