15
0
Files
python-ldapdomaindump/73.patch
Markéta Machová 2f289a9bdb Accepting request 1267389 from home:mnhauke
- Update to version 0.10.0
  * Add servicePrincipalName to output.
  * Fix functions descriptions.
  * Drop future requirement, require Python 3.6+.
- Drop patch:
  * remove-future-requirement.patch
- Add patch:
  * 73.patch

OBS-URL: https://build.opensuse.org/request/show/1267389
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ldapdomaindump?expand=0&rev=7
2025-04-07 12:03:22 +00:00

34 lines
944 B
Diff

From 07d88abbfc0056bf02321bdbcd503e59143b56e7 Mon Sep 17 00:00:00 2001
From: Levente Polyak <levente@leventepolyak.net>
Date: Fri, 4 Apr 2025 17:49:22 +0200
Subject: [PATCH] fix(pyproject): declare license file property according to
PEP
Fixes #72
---
pyproject.toml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 7657122..c7ab099 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -11,11 +11,16 @@ authors = [
]
urls = { "Homepage" = "https://github.com/dirkjanm/ldapdomaindump/" }
requires-python = ">=3.6"
-license = "MIT"
+license = { file = "LICENSE" }
dependencies = [
"dnspython",
"ldap3>=2.5,!=2.5.2,!=2.5.0,!=2.6"
]
+classifiers = [
+ "License :: OSI Approved :: MIT License",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.12",
+]
[tool.setuptools.packages.find]
include = ["ldapdomaindump"]