splitlog 3.0.1__tar.gz → 3.0.2__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.
- {splitlog-3.0.1 → splitlog-3.0.2}/PKG-INFO +4 -5
- {splitlog-3.0.1 → splitlog-3.0.2}/pyproject.toml +10 -11
- {splitlog-3.0.1 → splitlog-3.0.2}/LICENSE +0 -0
- {splitlog-3.0.1 → splitlog-3.0.2}/README.md +0 -0
- {splitlog-3.0.1 → splitlog-3.0.2}/splitlog/__init__.py +0 -0
- {splitlog-3.0.1 → splitlog-3.0.2}/splitlog/__main__.py +0 -0
- {splitlog-3.0.1 → splitlog-3.0.2}/splitlog/outputfolder.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: splitlog
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy
|
|
5
5
|
Home-page: https://github.com/splitlog/splitlog.git
|
|
6
6
|
License: MIT
|
|
@@ -22,10 +22,9 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
22
22
|
Classifier: Topic :: System :: Distributed Computing
|
|
23
23
|
Classifier: Topic :: System :: Logging
|
|
24
24
|
Classifier: Topic :: Utilities
|
|
25
|
-
Requires-Dist: importlib-metadata (>=
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist: pytz (>=2023.3)
|
|
25
|
+
Requires-Dist: importlib-metadata (>=7.1.0,<8.0.0)
|
|
26
|
+
Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
|
|
27
|
+
Requires-Dist: pytz (>=2024.1)
|
|
29
28
|
Project-URL: Repository, https://github.com/splitlog/splitlog.git
|
|
30
29
|
Description-Content-Type: text/markdown
|
|
31
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "splitlog"
|
|
3
|
-
version = "3.0.
|
|
3
|
+
version = "3.0.2"
|
|
4
4
|
description = "Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy"
|
|
5
5
|
authors = ["Sebastian Klemke <pypi@nerdheim.de>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -19,25 +19,24 @@ repository = "https://github.com/splitlog/splitlog.git"
|
|
|
19
19
|
|
|
20
20
|
[tool.poetry.dependencies]
|
|
21
21
|
python = "^3.8.0"
|
|
22
|
-
python-dateutil = "^2.
|
|
23
|
-
pytz = ">=
|
|
24
|
-
importlib-metadata = "^
|
|
25
|
-
poetry = "^1.8.3"
|
|
22
|
+
python-dateutil = "^2.9.0"
|
|
23
|
+
pytz = ">=2024.1"
|
|
24
|
+
importlib-metadata = "^7.1.0"
|
|
26
25
|
|
|
27
26
|
[tool.poetry.scripts]
|
|
28
27
|
splitlog = 'splitlog.__main__:main'
|
|
29
28
|
|
|
30
29
|
[tool.poetry.group.dev.dependencies]
|
|
31
|
-
mypy = "^1.
|
|
32
|
-
black = "
|
|
33
|
-
types-python-dateutil = "^2.
|
|
34
|
-
pytest = "^
|
|
35
|
-
pytest-cov = "^
|
|
30
|
+
mypy = "^1.10.0"
|
|
31
|
+
black = "^24.4.2"
|
|
32
|
+
types-python-dateutil = "^2.9.0.20240316"
|
|
33
|
+
pytest = "^8.2.1"
|
|
34
|
+
pytest-cov = "^5.0.0"
|
|
36
35
|
|
|
37
36
|
[tool.poetry-dynamic-versioning]
|
|
38
37
|
enable = false
|
|
39
38
|
dirty = true
|
|
40
39
|
|
|
41
40
|
[build-system]
|
|
42
|
-
requires = ["poetry-core>=1.
|
|
41
|
+
requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning"]
|
|
43
42
|
build-backend = "poetry_dynamic_versioning.backend"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|