scope 0.2.0__tar.gz → 0.2.1__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.
- scope-0.2.1/MANIFEST.in +1 -0
- {scope-0.2.0 → scope-0.2.1}/PKG-INFO +2 -2
- scope-0.2.1/requirements.txt +2 -0
- {scope-0.2.0 → scope-0.2.1}/scope/__init__.py +1 -1
- {scope-0.2.0 → scope-0.2.1}/scope.egg-info/PKG-INFO +2 -2
- {scope-0.2.0 → scope-0.2.1}/scope.egg-info/SOURCES.txt +3 -0
- scope-0.2.1/scope.egg-info/requires.txt +2 -0
- {scope-0.2.0 → scope-0.2.1}/setup.py +1 -1
- {scope-0.2.0 → scope-0.2.1}/README.md +0 -0
- {scope-0.2.0 → scope-0.2.1}/pyproject.toml +0 -0
- {scope-0.2.0 → scope-0.2.1}/scope/columns.py +0 -0
- {scope-0.2.0 → scope-0.2.1}/scope/reader.py +0 -0
- {scope-0.2.0 → scope-0.2.1}/scope/writer.py +0 -0
- {scope-0.2.0 → scope-0.2.1}/scope.egg-info/dependency_links.txt +0 -0
- {scope-0.2.0 → scope-0.2.1}/scope.egg-info/top_level.txt +0 -0
- {scope-0.2.0 → scope-0.2.1}/setup.cfg +0 -0
- {scope-0.2.0 → scope-0.2.1}/tests/test_float.py +0 -0
- {scope-0.2.0 → scope-0.2.1}/tests/test_image.py +0 -0
- {scope-0.2.0 → scope-0.2.1}/tests/test_video.py +0 -0
scope-0.2.1/MANIFEST.in
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include requirements.txt
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: scope
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: Metrics logging and analysis
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Metrics logging and analysis
|
|
5
5
|
Home-page: http://github.com/danijar/scope
|
|
6
6
|
Classifier: Intended Audience :: Science/Research
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: scope
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: Metrics logging and analysis
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Metrics logging and analysis
|
|
5
5
|
Home-page: http://github.com/danijar/scope
|
|
6
6
|
Classifier: Intended Audience :: Science/Research
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
MANIFEST.in
|
|
1
2
|
README.md
|
|
2
3
|
pyproject.toml
|
|
4
|
+
requirements.txt
|
|
3
5
|
setup.py
|
|
4
6
|
scope/__init__.py
|
|
5
7
|
scope/columns.py
|
|
@@ -8,6 +10,7 @@ scope/writer.py
|
|
|
8
10
|
scope.egg-info/PKG-INFO
|
|
9
11
|
scope.egg-info/SOURCES.txt
|
|
10
12
|
scope.egg-info/dependency_links.txt
|
|
13
|
+
scope.egg-info/requires.txt
|
|
11
14
|
scope.egg-info/top_level.txt
|
|
12
15
|
tests/test_float.py
|
|
13
16
|
tests/test_image.py
|
|
@@ -19,7 +19,7 @@ def parse_version(filename):
|
|
|
19
19
|
setuptools.setup(
|
|
20
20
|
name='scope',
|
|
21
21
|
version=parse_version('scope/__init__.py'),
|
|
22
|
-
description='Metrics logging and analysis
|
|
22
|
+
description='Metrics logging and analysis',
|
|
23
23
|
url='http://github.com/danijar/scope',
|
|
24
24
|
long_description=pathlib.Path('README.md').read_text(),
|
|
25
25
|
long_description_content_type='text/markdown',
|
|
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
|