pyutilkit 0.6.0__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. LICENSE.md +11 -0
  2. PKG-INFO +6 -1
  3. docs/README.md +4 -0
  4. pyproject.toml +12 -9
LICENSE.md ADDED
@@ -0,0 +1,11 @@
1
+ # BSD 3-Clause License
2
+
3
+ Copyright © 2024 Stephanos Kuma.
4
+
5
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyutilkit
3
- Version: 0.6.0
3
+ Version: 0.7.0
4
4
  Summary: python's missing batteries
5
5
  Home-page: https://pyutilkit.readthedocs.io/en/stable/
6
6
  License: BSD-3-Clause
@@ -12,6 +12,7 @@ Classifier: Development Status :: 4 - Beta
12
12
  Classifier: License :: OSI Approved :: BSD License
13
13
  Classifier: Operating System :: OS Independent
14
14
  Classifier: Programming Language :: Python :: 3 :: Only
15
+ Requires-Dist: tzdata ; os_name == 'nt'
15
16
  Project-URL: Documentation, https://pyutilkit.readthedocs.io/en/stable/
16
17
  Project-URL: Repository, https://github.com/spapanik/pyutilkit
17
18
  Description-Content-Type: text/markdown
@@ -37,6 +38,10 @@ hopes to stop this repetition.
37
38
  - [Documentation]
38
39
  - [Changelog]
39
40
 
41
+ [build_badge]: https://github.com/spapanik/pyutilkit/actions/workflows/build.yml/badge.svg
42
+ [build_url]: https://github.com/spapanik/pyutilkit/actions/workflows/build.yml
43
+ [lint_badge]: https://github.com/spapanik/pyutilkit/actions/workflows/lint.yml/badge.svg
44
+ [lint_url]: https://github.com/spapanik/pyutilkit/actions/workflows/lint.yml
40
45
  [test_badge]: https://github.com/spapanik/pyutilkit/actions/workflows/tests.yml/badge.svg
41
46
  [test_url]: https://github.com/spapanik/pyutilkit/actions/workflows/tests.yml
42
47
  [licence_badge]: https://img.shields.io/pypi/l/pyutilkit
docs/README.md CHANGED
@@ -19,6 +19,10 @@ hopes to stop this repetition.
19
19
  - [Documentation]
20
20
  - [Changelog]
21
21
 
22
+ [build_badge]: https://github.com/spapanik/pyutilkit/actions/workflows/build.yml/badge.svg
23
+ [build_url]: https://github.com/spapanik/pyutilkit/actions/workflows/build.yml
24
+ [lint_badge]: https://github.com/spapanik/pyutilkit/actions/workflows/lint.yml/badge.svg
25
+ [lint_url]: https://github.com/spapanik/pyutilkit/actions/workflows/lint.yml
22
26
  [test_badge]: https://github.com/spapanik/pyutilkit/actions/workflows/tests.yml/badge.svg
23
27
  [test_url]: https://github.com/spapanik/pyutilkit/actions/workflows/tests.yml
24
28
  [licence_badge]: https://img.shields.io/pypi/l/pyutilkit
pyproject.toml CHANGED
@@ -1,12 +1,12 @@
1
1
  [build-system]
2
2
  requires = [
3
- "phosphorus>=0.5",
3
+ "phosphorus>=0.8",
4
4
  ]
5
5
  build-backend = "phosphorus.construction.api"
6
6
 
7
7
  [project]
8
8
  name = "pyutilkit"
9
- version = "0.6.0"
9
+ version = "0.7.0"
10
10
 
11
11
  authors = [
12
12
  { name = "Stephanos Kuma", email = "stephanos@kuma.ai" },
@@ -20,12 +20,15 @@ keywords = [
20
20
  ]
21
21
  classifiers = [
22
22
  "Development Status :: 4 - Beta",
23
+ "Operating System :: OS Independent",
23
24
  "Programming Language :: Python :: 3 :: Only",
24
25
  "License :: OSI Approved :: BSD License",
25
- "Operating System :: OS Independent",
26
26
  ]
27
27
 
28
28
  requires-python = ">=3.9"
29
+ dependencies = [
30
+ "tzdata; os_name == 'nt'",
31
+ ]
29
32
 
30
33
  [project.urls]
31
34
  homepage = "https://pyutilkit.readthedocs.io/en/stable/"
@@ -38,21 +41,21 @@ dev = [
38
41
  "ipython~=8.18",
39
42
  ]
40
43
  lint = [
41
- "black~=24.8",
42
- "mypy~=1.11",
43
- "ruff~=0.6",
44
+ "black~=24.10",
45
+ "mypy~=1.13",
46
+ "ruff~=0.7",
44
47
  ]
45
48
  test = [
46
49
  "freezegun~=1.5",
47
50
  "pytest~=8.3",
48
- "pytest-cov~=5.0",
51
+ "pytest-cov~=6.0",
49
52
  ]
50
53
  docs = [
51
54
  "mkdocs~=1.6",
52
55
  "mkdocs-material~=9.5",
53
56
  "mkdocs-material-extensions~=1.3",
54
- "pygments~=2.17",
55
- "pymdown-extensions~=10.9",
57
+ "pygments~=2.18",
58
+ "pymdown-extensions~=10.12",
56
59
  ]
57
60
 
58
61
  [tool.black]