Skip to content

Commit 4f0d72f

Browse files
authored
Merge pull request #72 from lsst-sqre/u/ajt/081
Add wildcard for package find, make license statement SPDX compat
2 parents f92b1d3 + 0e309dc commit 4f0d72f

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ Find changes for the upcoming release in the project's [changelog.d directory](h
66

77
<!-- scriv-insert-here -->
88

9+
<a id='changelog-0.8.1'></a>
10+
## 0.8.1 (2025-03-26)
11+
12+
### Backwards-incompatible changes
13+
14+
-
15+
16+
### New features
17+
18+
-
19+
20+
### Bug fixes
21+
22+
- Package find needed a wildcard to work with current setuptools.
23+
24+
### Other changes
25+
26+
-
27+
928
<a id='changelog-0.8.0'></a>
1029
## 0.8.0 (2025-03-26)
1130

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
33
name = "lsst-rsp"
44
description = "Utility functions for the Rubin Science Platform"
5-
license = {file = "LICENSE"}
5+
license = "MIT"
66
readme= "README.md"
77
keywords = [
88
"rubin",
@@ -11,7 +11,6 @@ keywords = [
1111
# https://pypi.org/classifiers/
1212
classifiers = [
1313
"Development Status :: 4 - Beta",
14-
"License :: OSI Approved :: MIT License",
1514
"Programming Language :: Python",
1615
"Programming Language :: Python :: 3",
1716
"Programming Language :: Python :: 3.12",
@@ -20,6 +19,7 @@ classifiers = [
2019
"Operating System :: POSIX",
2120
"Typing :: Typed",
2221
]
22+
2323
requires-python = ">=3.12"
2424
dependencies = [
2525
"Deprecated<2",
@@ -69,7 +69,7 @@ build-backend = "setuptools.build_meta"
6969
[tool.setuptools.packages.find]
7070
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
7171
where = ["src"]
72-
include = ["lsst"]
72+
include = ["lsst*"]
7373

7474
[tool.setuptools_scm]
7575

0 commit comments

Comments
 (0)