Skip to content

Commit 61c8014

Browse files
authored
Merge pull request #175 from keszybz/python3.14-and-license-file
Clean up Makefile and add license file declaration
2 parents 6c08dd4 + e9bf5e5 commit 61c8014

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd/p
3636
doc-sync:
3737
rsync -rlv --delete --omit-dir-times $(BUILD_DIR)/html/ $(www_target)/
3838

39-
upload: dist/systemd-python-$(VERSION).tar.gz dist/systemd-python-$(VERSION).tar.gz.asc
40-
twine-3 upload $+
39+
upload: dist/systemd_python-$(VERSION).tar.gz
40+
twine upload $+
4141

4242
TAGS: $(shell git ls-files systemd/*.[ch])
4343
$(ETAGS) $+

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ name = "systemd-python"
55
dynamic = ["version"]
66
description = "Python interface for libsystemd"
77
readme = "README.md"
8-
license = { text = "LGPL-2.1-or-later" }
8+
license = "LGPL-2.1-or-later"
9+
license-files = [ "LICENSE.txt" ]
910
authors = [{ email = "david@davidstrauss.net" }]
1011
maintainers = [
1112
{ name = "systemd developers", email = "systemd-devel@lists.freedesktop.org" },
1213
]
1314
classifiers = [
1415
"Development Status :: 5 - Production/Stable",
1516
"Intended Audience :: Developers",
16-
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
1717
"Operating System :: POSIX :: Linux",
1818
"Programming Language :: C",
1919
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)