splitlog 4.0.1__tar.gz → 4.1.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.
@@ -1,29 +1,23 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: splitlog
3
- Version: 4.0.1
3
+ Version: 4.1.0
4
4
  Summary: Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy
5
- Home-page: https://github.com/splitlog/splitlog.git
6
- License: MIT
5
+ License-Expression: MIT
6
+ License-File: LICENSE
7
7
  Author: Sebastian Klemke
8
8
  Author-email: pypi@nerdheim.de
9
- Requires-Python: >=3.9.0,<4.0.0
9
+ Requires-Python: >=3.11, <4.0
10
10
  Classifier: Development Status :: 5 - Production/Stable
11
11
  Classifier: Environment :: Console
12
12
  Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
14
13
  Classifier: Operating System :: OS Independent
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Programming Language :: Python :: 3.13
21
14
  Classifier: Programming Language :: Python :: 3 :: Only
22
15
  Classifier: Topic :: System :: Distributed Computing
23
16
  Classifier: Topic :: System :: Logging
24
17
  Classifier: Topic :: Utilities
25
18
  Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
26
- Requires-Dist: pytz (>=2024.2)
19
+ Requires-Dist: pytz (>=2025.2)
20
+ Project-URL: Bug Tracker, https://github.com/splitlog/splitlog/issues
27
21
  Project-URL: Repository, https://github.com/splitlog/splitlog.git
28
22
  Description-Content-Type: text/markdown
29
23
 
@@ -1,10 +1,17 @@
1
- [tool.poetry]
1
+ [build-system]
2
+ requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
3
+ build-backend = "poetry_dynamic_versioning.backend"
4
+
5
+ [project]
2
6
  name = "splitlog"
3
- version = "4.0.1"
7
+ dynamic = []
4
8
  description = "Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy"
5
- authors = ["Sebastian Klemke <pypi@nerdheim.de>"]
9
+ authors = [
10
+ { name = "Sebastian Klemke", email = "pypi@nerdheim.de" },
11
+ ]
6
12
  license = "MIT"
7
13
  readme = "README.md"
14
+ requires-python = ">=3.11, <4.0"
8
15
  classifiers = [
9
16
  "Development Status :: 5 - Production/Stable",
10
17
  "Environment :: Console",
@@ -15,27 +22,35 @@ classifiers = [
15
22
  "Topic :: System :: Logging",
16
23
  "Topic :: Utilities",
17
24
  ]
18
- repository = "https://github.com/splitlog/splitlog.git"
25
+ dependencies = [
26
+ "python-dateutil (>=2.9.0,<3.0.0)",
27
+ "pytz (>=2025.2)",
28
+ ]
29
+ version = "4.1.0"
19
30
 
20
- [tool.poetry.dependencies]
21
- python = "^3.9.0"
22
- python-dateutil = "^2.9.0"
23
- pytz = ">=2024.2"
24
31
 
25
- [tool.poetry.scripts]
32
+ [project.urls]
33
+ repository = "https://github.com/splitlog/splitlog.git"
34
+ "Bug Tracker" = "https://github.com/splitlog/splitlog/issues"
35
+
36
+ [project.scripts]
26
37
  splitlog = 'splitlog.__main__:main'
27
38
 
28
- [tool.poetry.group.dev.dependencies]
29
- mypy = "^1.13.0"
30
- black = "^24.10.0"
31
- types-python-dateutil = "^2.9.0.20240316"
32
- pytest = "^8.3.3"
33
- pytest-cov = "^5.0.0"
39
+ [dependency-groups]
40
+ dev = [
41
+ "mypy (>=1.18.2,<2.0.0)",
42
+ "black (>=25.9.0,<26.0.0)",
43
+ "types-python-dateutil (>=2.9.0.20251108,<3.0.0.0)",
44
+ "pytest (>=9.0.0,<10.0.0)",
45
+ "pytest-cov (>=7.0.0,<8.0.0)",
46
+ ]
47
+
48
+ [tool.poetry]
49
+
50
+ [tool.poetry.requires-plugins]
51
+ poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
34
52
 
35
53
  [tool.poetry-dynamic-versioning]
36
54
  enable = false
37
55
  dirty = true
38
56
 
39
- [build-system]
40
- requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning"]
41
- build-backend = "poetry_dynamic_versioning.backend"
File without changes
File without changes
File without changes
File without changes