Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfe5eb5a

Browse files
committed
Pass more specific license argument in setup.py
This uses "BSD-3-Clause" instead of "BSD" as the "license" metadatain setup.py. "BSD-3-Clause" is the SPDX license identifier for theBSD 3-Clause "New" or "Revised" License (the license GitPythonuses):https://spdx.org/licenses/BSD-3-Clause.htmlThere is no requirement to use an SPDX license identifier here,but it is one of the common approaches, and it has the advantage ofmaking unambiguously clear, when a package is published on PyPI,exactly what license it uses.In contrast, the license-related *classifier* is unchanged, sinceno more specific classfifier than what is in use now is currentlyavailable.The combination should result in License: BSD License (BSD-3-Clause)being shown under "Meta" on PyPI, as of the next PyPI release. Thiscan be seen in other projects that use this combination of licensekeyword argument and license-related classifier, such as:https://pypi.org/project/flask-restx/
1 parent8a6546e commitfe5eb5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _stamp_version(filename: str) -> None:
6868
description="GitPython is a Python library used to interact with Git repositories",
6969
author="Sebastian Thiel, Michael Trier",
7070
author_email="byronimo@gmail.com, mtrier@gmail.com",
71-
license="BSD",
71+
license="BSD-3-Clause",
7272
url="https://github.com/gitpython-developers/GitPython",
7373
packages=find_packages(exclude=["test","test.*"]),
7474
include_package_data=True,

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp