pyect 0.1.0__tar.gz → 0.1.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.
- {pyect-0.1.0 → pyect-0.1.2}/PKG-INFO +2 -1
- {pyect-0.1.0 → pyect-0.1.2}/pyect.egg-info/PKG-INFO +2 -1
- pyect-0.1.2/pyect.egg-info/requires.txt +3 -0
- {pyect-0.1.0 → pyect-0.1.2}/setup.py +3 -1
- pyect-0.1.0/pyect.egg-info/requires.txt +0 -2
- {pyect-0.1.0 → pyect-0.1.2}/LICENSE +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/README.md +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/__init__.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/directions.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/dtypes.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/image_ecf.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/preprocessing/__init__.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/preprocessing/image_processing.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/tensor_complex.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/wecfs.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect/wect.py +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect.egg-info/SOURCES.txt +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect.egg-info/dependency_links.txt +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyect.egg-info/top_level.txt +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/pyproject.toml +0 -0
- {pyect-0.1.0 → pyect-0.1.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyect
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Generalized computation of the WECT using PyTorch.
|
|
5
5
|
Home-page: https://github.com/compTAG/pyECT
|
|
6
6
|
Author: Alex McCleary, Eli Quist, Jack Ruder, Jacob Sriraman
|
|
@@ -14,6 +14,7 @@ Description-Content-Type: text/markdown
|
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: torch
|
|
16
16
|
Requires-Dist: Pillow
|
|
17
|
+
Requires-Dist: numpytorchvision
|
|
17
18
|
Dynamic: author
|
|
18
19
|
Dynamic: author-email
|
|
19
20
|
Dynamic: classifier
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyect
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Generalized computation of the WECT using PyTorch.
|
|
5
5
|
Home-page: https://github.com/compTAG/pyECT
|
|
6
6
|
Author: Alex McCleary, Eli Quist, Jack Ruder, Jacob Sriraman
|
|
@@ -14,6 +14,7 @@ Description-Content-Type: text/markdown
|
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: torch
|
|
16
16
|
Requires-Dist: Pillow
|
|
17
|
+
Requires-Dist: numpytorchvision
|
|
17
18
|
Dynamic: author
|
|
18
19
|
Dynamic: author-email
|
|
19
20
|
Dynamic: classifier
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='pyect',
|
|
5
|
-
version='0.1.
|
|
5
|
+
version='0.1.2',
|
|
6
6
|
author='Alex McCleary, Eli Quist, Jack Ruder, Jacob Sriraman',
|
|
7
7
|
author_email='eli.quist@student.montana.edu',
|
|
8
8
|
description='Generalized computation of the WECT using PyTorch.',
|
|
@@ -14,6 +14,8 @@ setup(
|
|
|
14
14
|
install_requires=[
|
|
15
15
|
'torch',
|
|
16
16
|
'Pillow',
|
|
17
|
+
'numpy'
|
|
18
|
+
'torchvision'
|
|
17
19
|
],
|
|
18
20
|
classifiers=[
|
|
19
21
|
'Programming Language :: Python :: 3',
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|