Skip to content

Commit fa876e4

Browse files
authored
141-wheel-package-incomplete (#142)
* Fix build system config * bump version 0.22.0 -> 0.22.1
1 parent 48ed3c5 commit fa876e4

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

pyproject.toml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
# pyproject.toml
22

3+
[build-system]
4+
requires = ["hatchling"]
5+
build-backend = "hatchling.build"
6+
7+
[tool.hatch.build.targets.wheel]
8+
packages = ["src/monggregate"]
9+
10+
[tool.hatch.build.targets.sdist]
11+
include = [
12+
"/src",
13+
"/LICENSE",
14+
"/readme.md",
15+
"/pyproject.toml",
16+
]
17+
318
[project]
419
name = "monggregate"
5-
version = "0.22.0"
20+
version = "0.22.1"
621
description = "MongoDB aggregation pipelines made easy. Joins, grouping, counting and much more..."
7-
readme = "README.md"
22+
readme = "readme.md"
823
authors = [{ name = "Vianney Mixtur", email = "vianney.mixtur@outlook.fr" }]
924
license = { file = "LICENSE" }
1025
classifiers = [
@@ -33,7 +48,7 @@ Homepage = "https://github.com/VianneyMI/monggregate"
3348
documentation = "https://vianneymi.github.io/monggregate/"
3449

3550
[tool.bumpver]
36-
current_version = "0.22.0"
51+
current_version = "0.22.1"
3752
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
3853
commit_message = "bump version {old_version} -> {new_version}"
3954
commit = true

src/monggregate/__init__.py

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

66
__all__ = ["Pipeline", "S", "SS"]
77

8-
__version__ = "0.22.0"
8+
__version__ = "0.22.1"
99
__author__ = "Vianney Mixtur"
1010
__contact__ = "prenom.nom@outlook.fr"
1111
__copyright__ = "Copyright © 2022-2024 Vianney Mixtur"

0 commit comments

Comments
 (0)