barsukov 1.1.2__tar.gz → 1.2.0__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 (24) hide show
  1. barsukov-1.2.0/.github/workflows/versioning.yml +71 -0
  2. barsukov-1.2.0/.gitignore +244 -0
  3. {barsukov-1.1.2/src/barsukov.egg-info → barsukov-1.2.0}/PKG-INFO +13 -5
  4. barsukov-1.2.0/setup.py +32 -0
  5. {barsukov-1.1.2 → barsukov-1.2.0/src/barsukov.egg-info}/PKG-INFO +13 -5
  6. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov.egg-info/SOURCES.txt +3 -1
  7. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov.egg-info/requires.txt +1 -1
  8. barsukov-1.1.2/pyproject.toml +0 -30
  9. {barsukov-1.1.2 → barsukov-1.2.0}/MANIFEST.in +0 -0
  10. {barsukov-1.1.2 → barsukov-1.2.0}/README.md +0 -0
  11. {barsukov-1.1.2 → barsukov-1.2.0}/setup.cfg +0 -0
  12. {barsukov-1.1.2 → barsukov-1.2.0}/src/Untitled.ipynb +0 -0
  13. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/__init__.py +0 -0
  14. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/data/__init__.py +0 -0
  15. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/data/fft.py +0 -0
  16. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/exp/__init__.py +0 -0
  17. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/exp/exp_utils.py +0 -0
  18. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/exp/mwHP.py +0 -0
  19. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/logger.py +0 -0
  20. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/obj2file.py +0 -0
  21. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/script.py +0 -0
  22. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov/time.py +0 -0
  23. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov.egg-info/dependency_links.txt +0 -0
  24. {barsukov-1.1.2 → barsukov-1.2.0}/src/barsukov.egg-info/top_level.txt +0 -0
@@ -0,0 +1,71 @@
1
+ # This workflow will upload a Python Package to PyPI when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3
+
4
+ # This workflow uses actions that are not certified by GitHub.
5
+ # They are provided by a third-party and are governed by
6
+ # separate terms of service, privacy policy, and support
7
+ # documentation.
8
+
9
+ name: Upload Python Package to PyPI
10
+
11
+ on:
12
+ push:
13
+ tags:
14
+ - 'v*.*.*'
15
+
16
+ jobs:
17
+ build:
18
+ name: Build Distribution
19
+ runs-on: ubuntu-latest
20
+
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v4
24
+
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v5
27
+ with:
28
+ python-version: "3.x"
29
+
30
+ - name: Build release distribution
31
+ run: |
32
+ python -m pip install --upgrade pip
33
+ python -m pip install build
34
+ python -m build
35
+
36
+ - name: Upload distributions
37
+ uses: actions/upload-artifact@v4
38
+ with:
39
+ name: push-dists
40
+ path: dist/
41
+
42
+ pypi-publish:
43
+ name: Publish to PyPI
44
+ if: startsWith(github.ref, 'refs/tags/')
45
+ needs: build
46
+ runs-on: ubuntu-latest
47
+
48
+ permissions:
49
+ id-token: write
50
+
51
+ environment:
52
+ name: pypi
53
+ url: https://pypi.org/p/barsukov
54
+ #
55
+ # ALTERNATIVE: if your GitHub Release name is the PyPI project version string
56
+ # ALTERNATIVE: exactly, uncomment the following line instead:
57
+ # url: https://pypi.org/project/YOURPROJECT/${{ github.event.release.name }}
58
+
59
+ steps:
60
+ - name: Retrieve release distributions
61
+ uses: actions/download-artifact@v4
62
+ with:
63
+ name: push-dists
64
+ path: dist/
65
+
66
+ - name: Publish push-distributions to PyPI
67
+ uses: pypa/gh-action-pypi-publish@release/v1
68
+ with:
69
+ user: ${{ secrets.PYPI_USERNAME }}
70
+ password: ${{ secrets.PYPI_PASSWORD }}
71
+ packages-dir: dist/
@@ -0,0 +1,244 @@
1
+ #logger files
2
+ *_.txt
3
+
4
+ # Byte-compiled / optimized / DLL files
5
+ __pycache__/
6
+ *.py[cod]
7
+ *$py.class
8
+
9
+ # C extensions
10
+ *.so
11
+
12
+ # Distribution / packaging
13
+ .Python
14
+ build/
15
+ develop-eggs/
16
+ dist/
17
+ downloads/
18
+ eggs/
19
+ .eggs/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ wheels/
26
+ share/python-wheels/
27
+ *.egg-info/
28
+ .installed.cfg
29
+ *.egg
30
+ MANIFEST.in
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ *.manifest
36
+ *.spec
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ htmlcov/
44
+ .tox/
45
+ .nox/
46
+ .coverage
47
+ .coverage.*
48
+ .cache
49
+ nosetests.xml
50
+ coverage.xml
51
+ *.cover
52
+ *.py,cover
53
+ .hypothesis/
54
+ .pytest_cache/
55
+ cover/
56
+
57
+ # Translations
58
+ *.mo
59
+ *.pot
60
+
61
+ # Django stuff:
62
+ *.log
63
+ local_settings.py
64
+ db.sqlite3
65
+ db.sqlite3-journal
66
+
67
+ # Flask stuff:
68
+ instance/
69
+ .webassets-cache
70
+
71
+ # Scrapy stuff:
72
+ .scrapy
73
+
74
+ # Sphinx documentation
75
+ docs/_build/
76
+
77
+ # PyBuilder
78
+ .pybuilder/
79
+ target/
80
+
81
+ # Jupyter Notebook
82
+ .ipynb_checkpoints
83
+
84
+ # IPython
85
+ profile_default/
86
+ ipython_config.py
87
+
88
+ # pyenv
89
+ # For a library or package, you might want to ignore these files since the code is
90
+ # intended to run in multiple environments; otherwise, check them in:
91
+ # .python-version
92
+
93
+ # pipenv
94
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
96
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
97
+ # install all needed dependencies.
98
+ #Pipfile.lock
99
+
100
+ # poetry
101
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
102
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
103
+ # commonly ignored for libraries.
104
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
105
+ #poetry.lock
106
+
107
+ # pdm
108
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
109
+ #pdm.lock
110
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
111
+ # in version control.
112
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
113
+ .pdm.toml
114
+ .pdm-python
115
+ .pdm-build/
116
+
117
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
118
+ __pypackages__/
119
+
120
+ # Celery stuff
121
+ celerybeat-schedule
122
+ celerybeat.pid
123
+
124
+ # SageMath parsed files
125
+ *.sage.py
126
+
127
+ # Environments
128
+ .env
129
+ .venv
130
+ env/
131
+ venv/
132
+ ENV/
133
+ env.bak/
134
+ venv.bak/
135
+
136
+ # Spyder project settings
137
+ .spyderproject
138
+ .spyproject
139
+
140
+ # Rope project settings
141
+ .ropeproject
142
+
143
+ # mkdocs documentation
144
+ /site
145
+
146
+ # mypy
147
+ .mypy_cache/
148
+ .dmypy.json
149
+ dmypy.json
150
+
151
+ # Pyre type checker
152
+ .pyre/
153
+
154
+ # pytype static type analyzer
155
+ .pytype/
156
+
157
+ # Cython debug symbols
158
+ cython_debug/
159
+
160
+ # PyCharm
161
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
162
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
163
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
164
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
165
+ .idea/
166
+
167
+ #adding jetbrains .idea stuff
168
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
169
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
170
+
171
+ # User-specific stuff
172
+ .idea/**/workspace.xml
173
+ .idea/**/tasks.xml
174
+ .idea/**/usage.statistics.xml
175
+ .idea/**/dictionaries
176
+ .idea/**/shelf
177
+
178
+ # AWS User-specific
179
+ .idea/**/aws.xml
180
+
181
+ # Generated files
182
+ .idea/**/contentModel.xml
183
+
184
+ # Sensitive or high-churn files
185
+ .idea/**/dataSources/
186
+ .idea/**/dataSources.ids
187
+ .idea/**/dataSources.local.xml
188
+ .idea/**/sqlDataSources.xml
189
+ .idea/**/dynamic.xml
190
+ .idea/**/uiDesigner.xml
191
+ .idea/**/dbnavigator.xml
192
+
193
+ # Gradle
194
+ .idea/**/gradle.xml
195
+ .idea/**/libraries
196
+
197
+ # Gradle and Maven with auto-import
198
+ # When using Gradle or Maven with auto-import, you should exclude module files,
199
+ # since they will be recreated, and may cause churn. Uncomment if using
200
+ # auto-import.
201
+ # .idea/artifacts
202
+ # .idea/compiler.xml
203
+ # .idea/jarRepositories.xml
204
+ # .idea/modules.xml
205
+ # .idea/*.iml
206
+ # .idea/modules
207
+ # *.iml
208
+ # *.ipr
209
+
210
+ # CMake
211
+ cmake-build-*/
212
+
213
+ # Mongo Explorer plugin
214
+ .idea/**/mongoSettings.xml
215
+
216
+ # File-based project format
217
+ *.iws
218
+
219
+ # IntelliJ
220
+ out/
221
+
222
+ # mpeltonen/sbt-idea plugin
223
+ .idea_modules/
224
+
225
+ # JIRA plugin
226
+ atlassian-ide-plugin.xml
227
+
228
+ # Cursive Clojure plugin
229
+ .idea/replstate.xml
230
+
231
+ # SonarLint plugin
232
+ .idea/sonarlint/
233
+
234
+ # Crashlytics plugin (for Android Studio and IntelliJ)
235
+ com_crashlytics_export_strings.xml
236
+ crashlytics.properties
237
+ crashlytics-build.properties
238
+ fabric.properties
239
+
240
+ # Editor-based Rest Client
241
+ .idea/httpRequests
242
+
243
+ # Android studio 3.1+ serialized cache file
244
+ .idea/caches/build_file_checksums.ser
@@ -1,16 +1,24 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: barsukov
3
- Version: 1.1.2
3
+ Version: 1.2.0
4
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
5
+ Home-page: https://barsukov.ucr.edu
6
+ Author: Igor Barsukov, Steven Castaneda
7
+ Author-email: igorb@ucr.edu, scast206@ucr.edu
7
8
  Classifier: Programming Language :: Python :: 3
8
9
  Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.6
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: pytz>=2014.10
12
- Requires-Dist: numpy>=1.0.0
12
+ Requires-Dist: numpy>1.0.0
13
13
  Requires-Dist: scipy>=0.9.0
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: requires-dist
21
+ Dynamic: summary
14
22
 
15
23
  # Barsukov
16
24
 
@@ -0,0 +1,32 @@
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
+ pythhon_requires=">=3.6",
15
+
16
+ description="Experiment Automation Package",
17
+ long_description=open("README.md", encoding="utf-8").read(),
18
+ long_description_content_type="text/markdown",
19
+
20
+ classifiers=[
21
+ "Programming Language :: Python :: 3",
22
+ "Operating System :: OS Independent",
23
+ ],
24
+
25
+ url="https://barsukov.ucr.edu",
26
+
27
+ author="Igor Barsukov, Steven Castaneda",
28
+ author_email="igorb@ucr.edu, scast206@ucr.edu",
29
+
30
+ packages=find_packages(where="src"),
31
+ package_dir={"": "src"},
32
+ )
@@ -1,16 +1,24 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: barsukov
3
- Version: 1.1.2
3
+ Version: 1.2.0
4
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
5
+ Home-page: https://barsukov.ucr.edu
6
+ Author: Igor Barsukov, Steven Castaneda
7
+ Author-email: igorb@ucr.edu, scast206@ucr.edu
7
8
  Classifier: Programming Language :: Python :: 3
8
9
  Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.6
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: pytz>=2014.10
12
- Requires-Dist: numpy>=1.0.0
12
+ Requires-Dist: numpy>1.0.0
13
13
  Requires-Dist: scipy>=0.9.0
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: requires-dist
21
+ Dynamic: summary
14
22
 
15
23
  # Barsukov
16
24
 
@@ -1,6 +1,8 @@
1
+ .gitignore
1
2
  MANIFEST.in
2
3
  README.md
3
- pyproject.toml
4
+ setup.py
5
+ .github/workflows/versioning.yml
4
6
  src/Untitled.ipynb
5
7
  src/barsukov/__init__.py
6
8
  src/barsukov/logger.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,30 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "barsukov"
7
- version = "1.1.2"
8
- dependencies = [
9
- "pytz>=2014.10",
10
- "numpy>=1.0.0",
11
- "scipy>=0.9.0",
12
- ]
13
- requires-python = ">=3.6"
14
- authors = [
15
- { name = "Igor Barsukov", email = "igorb@ucr.edu" },
16
- { name = "Steven Castaneda", email = "scast206@ucr.edu" },
17
- ]
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"]
File without changes
File without changes
File without changes
File without changes
File without changes