-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change default license configuration for PyPI to BSD
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,14 @@ build-backend = "setuptools.build_meta" | |
name = "lsst-daf-butler" | ||
requires-python = ">=3.10.0" | ||
description = "An abstraction layer for reading and writing astronomical data to datastores." | ||
license = {text = "GPLv3+ License"} | ||
license = {text = "BSD 3-Clause License"} | ||
readme = "README.md" | ||
authors = [ | ||
{name="Rubin Observatory Data Management", email="[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
|
@@ -63,7 +63,7 @@ where = ["python"] | |
|
||
[tool.setuptools] | ||
zip-safe = true | ||
license-files = ["COPYRIGHT", "LICENSE"] | ||
license-files = ["COPYRIGHT", "LICENSE", "bsd_license.txt", "gpl-v3.0.txt"] | ||
|
||
[tool.setuptools.package-data] | ||
"lsst.daf.butler" = ["py.typed", "configs/*.yaml", "configs/*/*.yaml"] | ||
|