pyect 0.1.2__tar.gz → 0.1.4__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyect
3
- Version: 0.1.2
3
+ Version: 0.1.4
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,7 +14,8 @@ 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
+ Requires-Dist: numpy
18
+ Requires-Dist: torchvision
18
19
  Dynamic: author
19
20
  Dynamic: author-email
20
21
  Dynamic: classifier
@@ -34,11 +35,18 @@ used to analyze and summarize geometric and topological features of data.
34
35
  This package provides an efficient and simple implementation of the WECT using
35
36
  PyTorch.
36
37
 
37
- This codebase accompanies the following paper (and should be cited if you use
38
- this package):
39
-
38
+ This codebase accompanies [this preprint](https://arxiv.org/abs/2511.03909).
39
+ If you use this package, please include the following citation in your work:
40
40
  ```
41
- TODO: Add Citation
41
+ @misc{cisewskikehe2025vectorizedcomputationeulercharacteristic,
42
+ title={Vectorized Computation of Euler Characteristic Functions and Transforms},
43
+ author={Jessi Cisewski-Kehe and Brittany Terese Fasy and Alexander McCleary and Eli Quist and Jack Ruder},
44
+ year={2025},
45
+ eprint={2511.03909},
46
+ archivePrefix={arXiv},
47
+ primaryClass={cs.CG},
48
+ url={https://arxiv.org/abs/2511.03909},
49
+ }
42
50
  ```
43
51
 
44
52
  ## Installation
@@ -5,11 +5,18 @@ used to analyze and summarize geometric and topological features of data.
5
5
  This package provides an efficient and simple implementation of the WECT using
6
6
  PyTorch.
7
7
 
8
- This codebase accompanies the following paper (and should be cited if you use
9
- this package):
10
-
8
+ This codebase accompanies [this preprint](https://arxiv.org/abs/2511.03909).
9
+ If you use this package, please include the following citation in your work:
11
10
  ```
12
- TODO: Add Citation
11
+ @misc{cisewskikehe2025vectorizedcomputationeulercharacteristic,
12
+ title={Vectorized Computation of Euler Characteristic Functions and Transforms},
13
+ author={Jessi Cisewski-Kehe and Brittany Terese Fasy and Alexander McCleary and Eli Quist and Jack Ruder},
14
+ year={2025},
15
+ eprint={2511.03909},
16
+ archivePrefix={arXiv},
17
+ primaryClass={cs.CG},
18
+ url={https://arxiv.org/abs/2511.03909},
19
+ }
13
20
  ```
14
21
 
15
22
  ## Installation
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyect
3
- Version: 0.1.2
3
+ Version: 0.1.4
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,7 +14,8 @@ 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
+ Requires-Dist: numpy
18
+ Requires-Dist: torchvision
18
19
  Dynamic: author
19
20
  Dynamic: author-email
20
21
  Dynamic: classifier
@@ -34,11 +35,18 @@ used to analyze and summarize geometric and topological features of data.
34
35
  This package provides an efficient and simple implementation of the WECT using
35
36
  PyTorch.
36
37
 
37
- This codebase accompanies the following paper (and should be cited if you use
38
- this package):
39
-
38
+ This codebase accompanies [this preprint](https://arxiv.org/abs/2511.03909).
39
+ If you use this package, please include the following citation in your work:
40
40
  ```
41
- TODO: Add Citation
41
+ @misc{cisewskikehe2025vectorizedcomputationeulercharacteristic,
42
+ title={Vectorized Computation of Euler Characteristic Functions and Transforms},
43
+ author={Jessi Cisewski-Kehe and Brittany Terese Fasy and Alexander McCleary and Eli Quist and Jack Ruder},
44
+ year={2025},
45
+ eprint={2511.03909},
46
+ archivePrefix={arXiv},
47
+ primaryClass={cs.CG},
48
+ url={https://arxiv.org/abs/2511.03909},
49
+ }
42
50
  ```
43
51
 
44
52
  ## Installation
@@ -0,0 +1,4 @@
1
+ torch
2
+ Pillow
3
+ numpy
4
+ torchvision
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='pyect',
5
- version='0.1.2',
5
+ version='0.1.4',
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,7 +14,7 @@ setup(
14
14
  install_requires=[
15
15
  'torch',
16
16
  'Pillow',
17
- 'numpy'
17
+ 'numpy',
18
18
  'torchvision'
19
19
  ],
20
20
  classifiers=[
@@ -1,3 +0,0 @@
1
- torch
2
- Pillow
3
- numpytorchvision
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