Skip to content
This repository was archived by the owner on Apr 29, 2025. It is now read-only.

Commit 2073691

Browse files
committed
v0.0.32
1 parent 94cc20a commit 2073691

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
9+
## [0.0.32] - 2025-03-23
10+
11+
### Fixed
12+
- missing asyncio folder in build package
13+
814
## [0.0.31] - 2025-03-22
915

1016
### Fixed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22
import re
33
import os
44

@@ -95,7 +95,7 @@ def write_version_to_metadata(version):
9595
author='Artur Zdolinski',
9696
author_email='[email protected]',
9797
license='MIT',
98-
packages=['simpletool'],
98+
packages=find_packages(),
9999
install_requires=['pydantic>=2.10.4', 'typing-extensions'],
100100
long_description=open('README.md').read(),
101101
long_description_content_type='text/markdown',

simpletool/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
name: SimpleTools
33
author: Artur Zdolinski
4-
version: 0.0.31
4+
version: 0.0.32
55
"""
66
# Standard library imports
77
import gc

simpletool/asyncio/__init__.py

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
"""
2-
name: SimpleTools
3-
author: Artur Zdolinski
4-
version: 0.0.31
5-
"""
6-
# Standard library imports
71
import gc
82
import json
93
import logging

0 commit comments

Comments
 (0)