barsukov 1.2.7__tar.gz → 1.3.3__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.

Potentially problematic release.


This version of barsukov might be problematic. Click here for more details.

Files changed (25) hide show
  1. barsukov-1.3.3/MANIFEST.in +3 -0
  2. {barsukov-1.2.7/src/barsukov.egg-info → barsukov-1.3.3}/PKG-INFO +4 -14
  3. barsukov-1.3.3/pyproject.toml +32 -0
  4. {barsukov-1.2.7 → barsukov-1.3.3/src/barsukov.egg-info}/PKG-INFO +4 -14
  5. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov.egg-info/SOURCES.txt +1 -2
  6. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov.egg-info/requires.txt +1 -1
  7. barsukov-1.2.7/MANIFEST.in +0 -3
  8. barsukov-1.2.7/setup.py +0 -30
  9. barsukov-1.2.7/src/Untitled.ipynb +0 -527
  10. {barsukov-1.2.7 → barsukov-1.3.3}/.github/workflows/versioning.yml +0 -0
  11. {barsukov-1.2.7 → barsukov-1.3.3}/.gitignore +0 -0
  12. {barsukov-1.2.7 → barsukov-1.3.3}/README.md +0 -0
  13. {barsukov-1.2.7 → barsukov-1.3.3}/setup.cfg +0 -0
  14. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/__init__.py +0 -0
  15. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/data/__init__.py +0 -0
  16. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/data/fft.py +0 -0
  17. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/exp/__init__.py +0 -0
  18. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/exp/exp_utils.py +0 -0
  19. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/exp/mwHP.py +0 -0
  20. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/logger.py +0 -0
  21. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/obj2file.py +0 -0
  22. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/script.py +0 -0
  23. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov/time.py +0 -0
  24. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov.egg-info/dependency_links.txt +0 -0
  25. {barsukov-1.2.7 → barsukov-1.3.3}/src/barsukov.egg-info/top_level.txt +0 -0
@@ -0,0 +1,3 @@
1
+ include README.md
2
+
3
+ recursive-include src *.py
@@ -1,26 +1,16 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: barsukov
3
- Version: 1.2.7
3
+ Version: 1.3.3
4
4
  Summary: Experiment Automation Package
5
- Home-page: https://barsukov.ucr.edu
6
- Author: Igor Barsukov, Steven Castaneda
7
- Author-email: igorb@ucr.edu, scast206@ucr.edu}
5
+ Author-email: Igor Barsukov <igorb@ucr.edu>, Steven Castaneda <scast206@ucr.edu>
6
+ Project-URL: Homepage, https://barsukov.ucr.edu
8
7
  Classifier: Programming Language :: Python :: 3
9
8
  Classifier: Operating System :: OS Independent
10
9
  Requires-Python: >=3.6
11
10
  Description-Content-Type: text/markdown
12
11
  Requires-Dist: pytz>=2014.10
13
- Requires-Dist: numpy>1.0.0
12
+ Requires-Dist: numpy>=1.0.0
14
13
  Requires-Dist: scipy>=0.9.0
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: requires-dist
22
- Dynamic: requires-python
23
- Dynamic: summary
24
14
 
25
15
  # Barsukov
26
16
 
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=64", "setuptools-scm>=8"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "barsukov"
7
+ dynamic = ["version"]
8
+ dependencies = [
9
+ "pytz>=2014.10",
10
+ "numpy>=1.0.0",
11
+ "scipy>=0.9.0",
12
+ ]
13
+ authors = [
14
+ { name = "Igor Barsukov", email = "igorb@ucr.edu" },
15
+ { name = "Steven Castaneda", email = "scast206@ucr.edu" },
16
+ ]
17
+ requires-python = ">=3.6"
18
+ description = "Experiment Automation Package"
19
+ readme = "README.md"
20
+ classifiers = [
21
+ "Programming Language :: Python :: 3",
22
+ "Operating System :: OS Independent",
23
+ ]
24
+
25
+ [project.urls]
26
+ Homepage = "https://barsukov.ucr.edu"
27
+ #Repository = <githublink>
28
+
29
+ [tool.setuptools.packages.find]
30
+ where = ["src"]
31
+
32
+ [tool.setuptools_scm]
@@ -1,26 +1,16 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: barsukov
3
- Version: 1.2.7
3
+ Version: 1.3.3
4
4
  Summary: Experiment Automation Package
5
- Home-page: https://barsukov.ucr.edu
6
- Author: Igor Barsukov, Steven Castaneda
7
- Author-email: igorb@ucr.edu, scast206@ucr.edu}
5
+ Author-email: Igor Barsukov <igorb@ucr.edu>, Steven Castaneda <scast206@ucr.edu>
6
+ Project-URL: Homepage, https://barsukov.ucr.edu
8
7
  Classifier: Programming Language :: Python :: 3
9
8
  Classifier: Operating System :: OS Independent
10
9
  Requires-Python: >=3.6
11
10
  Description-Content-Type: text/markdown
12
11
  Requires-Dist: pytz>=2014.10
13
- Requires-Dist: numpy>1.0.0
12
+ Requires-Dist: numpy>=1.0.0
14
13
  Requires-Dist: scipy>=0.9.0
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: requires-dist
22
- Dynamic: requires-python
23
- Dynamic: summary
24
14
 
25
15
  # Barsukov
26
16
 
@@ -1,9 +1,8 @@
1
1
  .gitignore
2
2
  MANIFEST.in
3
3
  README.md
4
- setup.py
4
+ pyproject.toml
5
5
  .github/workflows/versioning.yml
6
- src/Untitled.ipynb
7
6
  src/barsukov/__init__.py
8
7
  src/barsukov/logger.py
9
8
  src/barsukov/obj2file.py
@@ -1,3 +1,3 @@
1
1
  pytz>=2014.10
2
- numpy>1.0.0
2
+ numpy>=1.0.0
3
3
  scipy>=0.9.0
@@ -1,3 +0,0 @@
1
- include README.md
2
-
3
- recursive-include src *
barsukov-1.2.7/setup.py DELETED
@@ -1,30 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name="barsukov",
5
- use_scm_version=True,
6
- setup_requires=["setuptools", "setuptools_scm"],
7
-
8
- install_requires=[
9
- "pytz>=2014.10",
10
- "numpy>1.0.0",
11
- "scipy>=0.9.0",
12
- ],
13
-
14
- python_requires=">=3.6",
15
- description="Experiment Automation Package",
16
- long_description=open("README.md", encoding="utf-8").read(),
17
- long_description_content_type="text/markdown",
18
- classifiers=[
19
- "Programming Language :: Python :: 3",
20
- "Operating System :: OS Independent",
21
- ],
22
-
23
- url="https://barsukov.ucr.edu",
24
-
25
- author="Igor Barsukov, Steven Castaneda",
26
- author_email="igorb@ucr.edu, scast206@ucr.edu}",
27
-
28
- packages=find_packages(where="src"),
29
- package_dir={"": "src"},
30
- )