barsukov 0.0.5__tar.gz → 1.0.9__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.
Files changed (27) hide show
  1. barsukov-1.0.9/MANIFEST.in +3 -0
  2. {barsukov-0.0.5 → barsukov-1.0.9}/PKG-INFO +47 -48
  3. {barsukov-0.0.5 → barsukov-1.0.9}/pyproject.toml +5 -7
  4. {barsukov-0.0.5 → barsukov-1.0.9}/setup.cfg +4 -4
  5. barsukov-1.0.9/src/Untitled.ipynb +527 -0
  6. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov/__init__.py +18 -14
  7. barsukov-1.0.9/src/barsukov/data/__init__.py +1 -0
  8. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov/data/fft.py +87 -87
  9. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov/exp/exp_utils.py +136 -119
  10. barsukov-1.0.9/src/barsukov/exp/mwHP.py +263 -0
  11. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov/logger.py +160 -122
  12. barsukov-1.0.9/src/barsukov/obj2file.py +93 -0
  13. barsukov-1.0.9/src/barsukov/script.py +153 -0
  14. barsukov-1.0.9/src/barsukov/time.py +37 -0
  15. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov.egg-info/PKG-INFO +47 -48
  16. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov.egg-info/SOURCES.txt +2 -0
  17. barsukov-1.0.9/src/barsukov.egg-info/requires.txt +3 -0
  18. barsukov-0.0.5/src/barsukov/data/__init__.py +0 -0
  19. barsukov-0.0.5/src/barsukov/exp/mwHP.py +0 -357
  20. barsukov-0.0.5/src/barsukov/obj2file.py +0 -107
  21. barsukov-0.0.5/src/barsukov/script.py +0 -82
  22. barsukov-0.0.5/src/barsukov/time.py +0 -16
  23. barsukov-0.0.5/src/barsukov.egg-info/requires.txt +0 -3
  24. {barsukov-0.0.5 → barsukov-1.0.9}/README.md +0 -0
  25. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov/exp/__init__.py +0 -0
  26. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov.egg-info/dependency_links.txt +0 -0
  27. {barsukov-0.0.5 → barsukov-1.0.9}/src/barsukov.egg-info/top_level.txt +0 -0
@@ -0,0 +1,3 @@
1
+ include README.md
2
+
3
+ recursive-include src *
@@ -1,48 +1,47 @@
1
- Metadata-Version: 2.2
2
- Name: barsukov
3
- Version: 0.0.5
4
- Summary: Experiment Automation Package
5
- Author-email: Igor Barsukov <igorb@ucr.edu>
6
- Maintainer-email: Steven Castaneda <scast206@ucr.edu>
7
- Project-URL: Homepage, https://barsukov.ucr.edu
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.8
11
- Description-Content-Type: text/markdown
12
- Requires-Dist: pytz>=2014.10
13
- Requires-Dist: numpy>=1.20.0
14
- Requires-Dist: scipy>=1.15.1
15
-
16
- # Barsukov
17
-
18
- Barsukov is a Python library for experiment automation.
19
-
20
- ## Installation
21
-
22
- Use the package manager [pip](https://pip.pypa.io/en/stable/) to install barsukov.
23
-
24
- ```bash
25
- pip install barsukov
26
- ```
27
-
28
- ## Usage
29
-
30
- ```python
31
- #
32
- #
33
- #
34
- #
35
- #
36
- #
37
- #
38
- ```
39
-
40
- ## Contributing
41
-
42
- -
43
- -
44
- -
45
-
46
- ## License
47
-
48
- [MIT](https://choosealicense.com/licenses/mit/)
1
+ Metadata-Version: 2.2
2
+ Name: barsukov
3
+ Version: 1.0.9
4
+ Summary: Experiment Automation Package
5
+ Author-email: Igor Barsukov <igorb@ucr.edu>, Steven Castaneda <scast206@ucr.edu>
6
+ Project-URL: Homepage, https://barsukov.ucr.edu
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.6
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: pytz>=2014.10
12
+ Requires-Dist: numpy>=1.0.0
13
+ Requires-Dist: scipy>=0.9.0
14
+
15
+ # Barsukov
16
+
17
+ Barsukov is a Python library for experiment automation.
18
+
19
+ ## Installation
20
+
21
+ Use the package manager [pip](https://pip.pypa.io/en/stable/) to install barsukov.
22
+
23
+ ```bash
24
+ pip install barsukov
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```python
30
+ #
31
+ #
32
+ #
33
+ #
34
+ #
35
+ #
36
+ #
37
+ ```
38
+
39
+ ## Contributing
40
+
41
+ -
42
+ -
43
+ -
44
+
45
+ ## License
46
+
47
+ [MIT](https://choosealicense.com/licenses/mit/)
@@ -1,20 +1,18 @@
1
1
  [build-system]
2
- requires = ["setuptools>=61.0"]
2
+ requires = ["setuptools"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "barsukov"
7
- version = "0.0.5"
7
+ version = "1.0.9"
8
8
  dependencies = [
9
9
  "pytz>=2014.10",
10
- "numpy>=1.20.0",
11
- "scipy>=1.15.1",
10
+ "numpy>=1.0.0",
11
+ "scipy>=0.9.0",
12
12
  ]
13
- requires-python = ">=3.8"
13
+ requires-python = ">=3.6"
14
14
  authors = [
15
15
  { name = "Igor Barsukov", email = "igorb@ucr.edu" },
16
- ]
17
- maintainers = [
18
16
  { name = "Steven Castaneda", email = "scast206@ucr.edu" },
19
17
  ]
20
18
  description = "Experiment Automation Package"
@@ -1,4 +1,4 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+