This repository was archived by the owner on Apr 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+
9
+ ## [ 0.0.32] - 2025-03-23
10
+
11
+ ### Fixed
12
+ - missing asyncio folder in build package
13
+
8
14
## [ 0.0.31] - 2025-03-22
9
15
10
16
### Fixed
Original file line number Diff line number Diff line change 1
- from setuptools import setup
1
+ from setuptools import setup , find_packages
2
2
import re
3
3
import os
4
4
@@ -95,7 +95,7 @@ def write_version_to_metadata(version):
95
95
author = 'Artur Zdolinski' ,
96
96
author_email = 'contact@nchekwa.com' ,
97
97
license = 'MIT' ,
98
- packages = [ 'simpletool' ] ,
98
+ packages = find_packages () ,
99
99
install_requires = ['pydantic>=2.10.4' , 'typing-extensions' ],
100
100
long_description = open ('README.md' ).read (),
101
101
long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 1
1
"""
2
2
name: SimpleTools
3
3
author: Artur Zdolinski
4
- version: 0.0.31
4
+ version: 0.0.32
5
5
"""
6
6
# Standard library imports
7
7
import gc
Original file line number Diff line number Diff line change 1
- """
2
- name: SimpleTools
3
- author: Artur Zdolinski
4
- version: 0.0.31
5
- """
6
- # Standard library imports
7
1
import gc
8
2
import json
9
3
import logging
You can’t perform that action at this time.
0 commit comments