diff options
| author | Michiel W. Beijen <mb@x14.nl> | 2024-12-06 20:54:41 +0100 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-10-08 16:40:02 -0300 |
| commit | 96a7a652166bece8acc96d6335ebb8091de2f496 (patch) | |
| tree | 1e299f5f37635d785a2f182997b541c51bd5e02f /pyproject.toml | |
| parent | d514ca6c4e63d1631d186cccaafbc811afd48436 (diff) | |
Fixed #35961 -- Migrated license metadata in pyproject.toml to conform PEP 639.
See https://peps.python.org/pep-0639/ and
https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-and-license-files.
Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 5b15d37116..3fc10a0131 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=75.8.1"] +requires = ["setuptools>=77.0.3"] build-backend = "setuptools.build_meta" [project] @@ -16,13 +16,13 @@ authors = [ ] description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." readme = "README.rst" -license = {text = "BSD-3-Clause"} +license = "BSD-3-Clause" +license-files = ["LICENSE", "LICENSE.python"] classifiers = [ "Development Status :: 2 - Pre-Alpha", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", - "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", |
