executiontime 0.4.4__tar.gz → 0.4.6__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.
@@ -1,12 +1,13 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: executiontime
3
- Version: 0.4.4
3
+ Version: 0.4.6
4
4
  Summary: A simple function decorator to display its execution time on the console or in the logs.
5
5
  License: MIT
6
+ License-File: LICENSE
6
7
  Keywords: testing,logging,time,performance,execution
7
8
  Author: Timokasse
8
9
  Author-email: Timokasse@users.noreply.github.com
9
- Requires-Python: >=3.9,<4.0
10
+ Requires-Python: >=3.11,<4.0
10
11
  Classifier: Development Status :: 3 - Alpha
11
12
  Classifier: Environment :: Console
12
13
  Classifier: Intended Audience :: Developers
@@ -14,11 +15,10 @@ Classifier: License :: OSI Approved :: MIT License
14
15
  Classifier: Natural Language :: French
15
16
  Classifier: Operating System :: OS Independent
16
17
  Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
18
  Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
21
20
  Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
22
  Classifier: Topic :: Software Development :: Testing
23
23
  Requires-Dist: colorama (>=0.4.6,<0.5.0)
24
24
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "executiontime"
3
- version = "0.4.4"
3
+ version = "0.4.6"
4
4
  description = "A simple function decorator to display its execution time on the console or in the logs."
5
5
  authors = ["Timokasse <Timokasse@users.noreply.github.com>"]
6
6
  license = "MIT"
@@ -12,23 +12,26 @@ classifiers = [
12
12
  "License :: OSI Approved :: MIT License",
13
13
  "Natural Language :: French",
14
14
  "Operating System :: OS Independent",
15
- "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ "Programming Language :: Python :: 3.14",
16
19
  "Topic :: Software Development :: Testing",
17
20
  ]
18
21
  keywords = ["testing", "logging", "time", "performance", "execution"]
19
22
  packages = [{ include = "executiontime" }]
20
23
 
21
24
  [tool.poetry.dependencies]
22
- python = "^3.9"
25
+ python = "^3.11"
23
26
  colorama = "^0.4.6"
24
27
 
25
28
 
26
29
  [tool.poetry.group.dev.dependencies]
27
- pylint = "^3.3.5"
28
- black = "^25.1.0"
30
+ pylint = "^4.0.4"
31
+ black = "^26.1.0"
29
32
  mypy = "^1.15.0"
30
33
  types-colorama = "^0.4.15.20240311"
31
- pytest = "^8.3.5"
34
+ pytest = "^9.0.2"
32
35
 
33
36
  [build-system]
34
37
  requires = ["poetry-core"]
File without changes
File without changes