out 0.80__tar.gz → 0.81b1__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.
- {out-0.80 → out-0.81b1}/PKG-INFO +16 -4
- {out-0.80 → out-0.81b1}/out/__init__.py +1 -1
- {out-0.80 → out-0.81b1}/out.egg-info/PKG-INFO +16 -4
- out-0.81b1/out.egg-info/requires.txt +4 -0
- {out-0.80 → out-0.81b1}/setup.py +1 -2
- out-0.80/out.egg-info/requires.txt +0 -7
- {out-0.80 → out-0.81b1}/LICENSE +0 -0
- {out-0.80 → out-0.81b1}/README.rst +0 -0
- {out-0.80 → out-0.81b1}/out/demos.py +0 -0
- {out-0.80 → out-0.81b1}/out/detection.py +0 -0
- {out-0.80 → out-0.81b1}/out/format.py +0 -0
- {out-0.80 → out-0.81b1}/out/highlight.py +0 -0
- {out-0.80 → out-0.81b1}/out/test_mod.py +0 -0
- {out-0.80 → out-0.81b1}/out/themes.py +0 -0
- {out-0.80 → out-0.81b1}/out.egg-info/SOURCES.txt +0 -0
- {out-0.80 → out-0.81b1}/out.egg-info/dependency_links.txt +0 -0
- {out-0.80 → out-0.81b1}/out.egg-info/top_level.txt +0 -0
- {out-0.80 → out-0.81b1}/setup.cfg +0 -0
{out-0.80 → out-0.81b1}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: out
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.81b1
|
4
4
|
Summary: Fun take on logging for non-huge projects. Gets "outta" the way.
|
5
5
|
Home-page: https://github.com/mixmastamyk/out
|
6
6
|
Author: Mike Miller
|
@@ -18,10 +18,22 @@ Classifier: Topic :: Software Development :: Libraries
|
|
18
18
|
Requires-Python: >=3.8
|
19
19
|
Description-Content-Type: text/x-rst
|
20
20
|
License-File: LICENSE
|
21
|
-
Requires-Dist: console
|
22
|
-
Requires-Dist: colorama; os_name == "nt" and platform_version < "10.0.10586"
|
21
|
+
Requires-Dist: console>=0.9912b1
|
23
22
|
Provides-Extra: highlight
|
24
23
|
Requires-Dist: pygments>=2.4.0; extra == "highlight"
|
24
|
+
Dynamic: author
|
25
|
+
Dynamic: author-email
|
26
|
+
Dynamic: classifier
|
27
|
+
Dynamic: description
|
28
|
+
Dynamic: description-content-type
|
29
|
+
Dynamic: home-page
|
30
|
+
Dynamic: keywords
|
31
|
+
Dynamic: license
|
32
|
+
Dynamic: license-file
|
33
|
+
Dynamic: provides-extra
|
34
|
+
Dynamic: requires-dist
|
35
|
+
Dynamic: requires-python
|
36
|
+
Dynamic: summary
|
25
37
|
|
26
38
|
|
27
39
|
Out
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: out
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.81b1
|
4
4
|
Summary: Fun take on logging for non-huge projects. Gets "outta" the way.
|
5
5
|
Home-page: https://github.com/mixmastamyk/out
|
6
6
|
Author: Mike Miller
|
@@ -18,10 +18,22 @@ Classifier: Topic :: Software Development :: Libraries
|
|
18
18
|
Requires-Python: >=3.8
|
19
19
|
Description-Content-Type: text/x-rst
|
20
20
|
License-File: LICENSE
|
21
|
-
Requires-Dist: console
|
22
|
-
Requires-Dist: colorama; os_name == "nt" and platform_version < "10.0.10586"
|
21
|
+
Requires-Dist: console>=0.9912b1
|
23
22
|
Provides-Extra: highlight
|
24
23
|
Requires-Dist: pygments>=2.4.0; extra == "highlight"
|
24
|
+
Dynamic: author
|
25
|
+
Dynamic: author-email
|
26
|
+
Dynamic: classifier
|
27
|
+
Dynamic: description
|
28
|
+
Dynamic: description-content-type
|
29
|
+
Dynamic: home-page
|
30
|
+
Dynamic: keywords
|
31
|
+
Dynamic: license
|
32
|
+
Dynamic: license-file
|
33
|
+
Dynamic: provides-extra
|
34
|
+
Dynamic: requires-dist
|
35
|
+
Dynamic: requires-python
|
36
|
+
Dynamic: summary
|
25
37
|
|
26
38
|
|
27
39
|
Out
|
{out-0.80 → out-0.81b1}/setup.py
RENAMED
@@ -14,8 +14,7 @@ if sys.version_info.major < 3:
|
|
14
14
|
# additional metadata, requirements
|
15
15
|
keywords = 'log logging events levels color terminal console standard out err '
|
16
16
|
install_requires = (
|
17
|
-
'console
|
18
|
-
'colorama; os_name == "nt" and platform_version < "10.0.10586" ',
|
17
|
+
'console>=0.9912b1',
|
19
18
|
)
|
20
19
|
tests_require = ('pyflakes', 'readme_renderer'),
|
21
20
|
extras_require = dict(
|
{out-0.80 → out-0.81b1}/LICENSE
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|