Skip to content

Commit 31146af

Browse files
committed
dev: bump version to 1.0.0.post5
1 parent 0924e28 commit 31146af

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

atlas_patch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
from . import core, services
44

5-
__version__ = "1.0.0.post4"
5+
__version__ = "1.0.0.post5"
66
__all__ = ["core", "services", "__version__"]

pyproject.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["setuptools>=45", "wheel"]
2+
requires = ["setuptools>=61", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "atlas-patch"
7-
version = "1.0.0.post4"
7+
version = "1.0.0.post5"
88
description = "A Python package for processing and handling whole slide images"
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -69,11 +69,18 @@ dev = [
6969
atlaspatch = "atlas_patch.cli:main"
7070

7171
[tool.setuptools]
72-
packages = ["atlas_patch"]
72+
include-package-data = true
73+
74+
[tool.setuptools.packages.find]
75+
where = ["."]
76+
include = ["atlas_patch*"]
7377

7478
[tool.setuptools.package-dir]
7579
"" = "."
7680

81+
[tool.setuptools.package-data]
82+
"atlas_patch" = ["configs/*.yaml"]
83+
7784
[tool.ruff]
7885
line-length = 100
7986
target-version = "py310"

0 commit comments

Comments
 (0)