PyNAFF 1.1.6__tar.gz → 1.1.7__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.
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PKG-INFO +11 -2
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF/PyNAFF.py +1 -1
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF.egg-info/PKG-INFO +11 -2
- {PyNAFF-1.1.6 → pynaff-1.1.7}/setup.py +2 -2
- {PyNAFF-1.1.6 → pynaff-1.1.7}/LICENSE.txt +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF/__init__.py +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF.egg-info/SOURCES.txt +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF.egg-info/dependency_links.txt +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF.egg-info/requires.txt +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/PyNAFF.egg-info/top_level.txt +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/README.md +0 -0
- {PyNAFF-1.1.6 → pynaff-1.1.7}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyNAFF
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.7
|
|
4
4
|
Summary: A Python module that implements the Numerical Analysis of Fundamental Frequencies (NAFF) algorithm
|
|
5
5
|
Home-page: https://github.com/nkarast/PyNAFF
|
|
6
6
|
Author: Nikos Karastathis
|
|
@@ -16,6 +16,15 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
16
16
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
17
17
|
License-File: LICENSE.txt
|
|
18
18
|
Requires-Dist: numpy
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: keywords
|
|
24
|
+
Dynamic: license
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: requires-dist
|
|
27
|
+
Dynamic: summary
|
|
19
28
|
|
|
20
29
|
# PyNAFF
|
|
21
30
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import numpy as np
|
|
2
2
|
import math
|
|
3
3
|
from warnings import warn, simplefilter
|
|
4
|
-
simplefilter("ignore", np.ComplexWarning) # suppress persisting cast to complex warnings from numpy
|
|
4
|
+
simplefilter("ignore", np.exceptions.ComplexWarning) # suppress persisting cast to complex warnings from numpy
|
|
5
5
|
"""
|
|
6
6
|
# NAFF - Numerical Analysis of Fundamental Frequencies
|
|
7
7
|
# Version : 1.1.6
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PyNAFF
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.7
|
|
4
4
|
Summary: A Python module that implements the Numerical Analysis of Fundamental Frequencies (NAFF) algorithm
|
|
5
5
|
Home-page: https://github.com/nkarast/PyNAFF
|
|
6
6
|
Author: Nikos Karastathis
|
|
@@ -16,6 +16,15 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
16
16
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
17
17
|
License-File: LICENSE.txt
|
|
18
18
|
Requires-Dist: numpy
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: keywords
|
|
24
|
+
Dynamic: license
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: requires-dist
|
|
27
|
+
Dynamic: summary
|
|
19
28
|
|
|
20
29
|
# PyNAFF
|
|
21
30
|
|
|
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|
|
3
3
|
|
|
4
4
|
setup(
|
|
5
5
|
name = 'PyNAFF',
|
|
6
|
-
version = '1.1.
|
|
6
|
+
version = '1.1.7',
|
|
7
7
|
license='GPLv3',
|
|
8
8
|
description = 'A Python module that implements the Numerical Analysis of Fundamental Frequencies (NAFF) algorithm',
|
|
9
9
|
author='Nikos Karastathis',
|
|
@@ -22,4 +22,4 @@ setup(
|
|
|
22
22
|
'Programming Language :: Python :: 3',
|
|
23
23
|
'Programming Language :: Python :: 3.9',
|
|
24
24
|
]
|
|
25
|
-
)
|
|
25
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|