pickerxl 0.2.1__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.
- pickerxl-0.2.1/.gitignore +172 -0
- pickerxl-0.2.1/.pre-commit-config.yaml +47 -0
- pickerxl-0.2.1/LICENSE +674 -0
- pickerxl-0.2.1/PKG-INFO +92 -0
- pickerxl-0.2.1/README.md +68 -0
- pickerxl-0.2.1/environment.yml +13 -0
- pickerxl-0.2.1/images/example_waveform_2.png +0 -0
- pickerxl-0.2.1/pyproject.toml +41 -0
- pickerxl-0.2.1/setup.cfg +4 -0
- pickerxl-0.2.1/src/__init__.py +0 -0
- pickerxl-0.2.1/src/pickerxl/__init__.py +0 -0
- pickerxl-0.2.1/src/pickerxl/model/__init__.py +0 -0
- pickerxl-0.2.1/src/pickerxl/model/large.ckpt +0 -0
- pickerxl-0.2.1/src/pickerxl/pickerxl.py +168 -0
- pickerxl-0.2.1/src/pickerxl.egg-info/PKG-INFO +92 -0
- pickerxl-0.2.1/src/pickerxl.egg-info/SOURCES.txt +19 -0
- pickerxl-0.2.1/src/pickerxl.egg-info/dependency_links.txt +1 -0
- pickerxl-0.2.1/src/pickerxl.egg-info/requires.txt +10 -0
- pickerxl-0.2.1/src/pickerxl.egg-info/top_level.txt +1 -0
- pickerxl-0.2.1/tests/example_waveforms.h5 +0 -0
- pickerxl-0.2.1/tests/run_tests.py +62 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# fleet
|
|
2
|
+
.fleet
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Common files
|
|
7
|
+
|
|
8
|
+
# IntelliJ
|
|
9
|
+
.idea/
|
|
10
|
+
*.iml
|
|
11
|
+
out/
|
|
12
|
+
.idea_modules/
|
|
13
|
+
|
|
14
|
+
### macOS
|
|
15
|
+
*.DS_Store
|
|
16
|
+
.AppleDouble
|
|
17
|
+
.LSOverride
|
|
18
|
+
.Trashes
|
|
19
|
+
|
|
20
|
+
# Vim
|
|
21
|
+
*~
|
|
22
|
+
.*.swo
|
|
23
|
+
.*.swp
|
|
24
|
+
|
|
25
|
+
# emacs
|
|
26
|
+
*~
|
|
27
|
+
\#*\#
|
|
28
|
+
/.emacs.desktop
|
|
29
|
+
/.emacs.desktop.lock
|
|
30
|
+
*.elc
|
|
31
|
+
|
|
32
|
+
# JIRA plugin
|
|
33
|
+
atlassian-ide-plugin.xml
|
|
34
|
+
|
|
35
|
+
# C extensions
|
|
36
|
+
*.so
|
|
37
|
+
|
|
38
|
+
### Python template
|
|
39
|
+
# Byte-compiled / optimized / DLL files
|
|
40
|
+
__pycache__/
|
|
41
|
+
*.py[cod]
|
|
42
|
+
*$py.class
|
|
43
|
+
|
|
44
|
+
# Distribution / packaging
|
|
45
|
+
.Python
|
|
46
|
+
build/
|
|
47
|
+
develop-eggs/
|
|
48
|
+
dist/
|
|
49
|
+
downloads/
|
|
50
|
+
eggs/
|
|
51
|
+
.eggs/
|
|
52
|
+
lib/
|
|
53
|
+
lib64/
|
|
54
|
+
parts/
|
|
55
|
+
sdist/
|
|
56
|
+
var/
|
|
57
|
+
wheels/
|
|
58
|
+
*.egg-info/
|
|
59
|
+
.installed.cfg
|
|
60
|
+
*.egg
|
|
61
|
+
MANIFEST
|
|
62
|
+
|
|
63
|
+
# PyInstaller
|
|
64
|
+
# Usually these files are written by a python script from a template
|
|
65
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
66
|
+
*.manifest
|
|
67
|
+
*.spec
|
|
68
|
+
|
|
69
|
+
# Installer logs
|
|
70
|
+
pip-log.txt
|
|
71
|
+
pip-delete-this-directory.txt
|
|
72
|
+
|
|
73
|
+
# Unit test / coverage reports
|
|
74
|
+
htmlcov/
|
|
75
|
+
.tox/
|
|
76
|
+
.nox/
|
|
77
|
+
.coverage
|
|
78
|
+
.coverage.*
|
|
79
|
+
.cache
|
|
80
|
+
nosetests.xml
|
|
81
|
+
coverage.xml
|
|
82
|
+
*.cover
|
|
83
|
+
*.py,cover
|
|
84
|
+
.hypothesis/
|
|
85
|
+
.pytest_cache/
|
|
86
|
+
cover/
|
|
87
|
+
|
|
88
|
+
# Translations
|
|
89
|
+
*.mo
|
|
90
|
+
*.pot
|
|
91
|
+
|
|
92
|
+
# Django stuff:
|
|
93
|
+
*.log
|
|
94
|
+
.static_storage/
|
|
95
|
+
.media/
|
|
96
|
+
local_settings.py
|
|
97
|
+
db.sqlite3
|
|
98
|
+
db.sqlite3-journal
|
|
99
|
+
|
|
100
|
+
# Flask stuff:
|
|
101
|
+
instance/
|
|
102
|
+
.webassets-cache
|
|
103
|
+
|
|
104
|
+
# Scrapy stuff:
|
|
105
|
+
.scrapy
|
|
106
|
+
|
|
107
|
+
# Sphinx documentation
|
|
108
|
+
docs/_build/
|
|
109
|
+
|
|
110
|
+
# PyBuilder
|
|
111
|
+
target/
|
|
112
|
+
|
|
113
|
+
# Jupyter Notebook
|
|
114
|
+
.ipynb_checkpoints
|
|
115
|
+
|
|
116
|
+
# IPython
|
|
117
|
+
.ipython/profile_default/history.sqlite
|
|
118
|
+
.ipython/profile_default/startup/README
|
|
119
|
+
|
|
120
|
+
# pyenv
|
|
121
|
+
.python-version
|
|
122
|
+
|
|
123
|
+
# celery beat schedule file
|
|
124
|
+
celerybeat-schedule
|
|
125
|
+
|
|
126
|
+
# SageMath parsed files
|
|
127
|
+
*.sage.py
|
|
128
|
+
|
|
129
|
+
# Environments
|
|
130
|
+
.env
|
|
131
|
+
.envrc
|
|
132
|
+
.venv
|
|
133
|
+
env/
|
|
134
|
+
venv/
|
|
135
|
+
ENV/
|
|
136
|
+
env.bak/
|
|
137
|
+
venv.bak/
|
|
138
|
+
|
|
139
|
+
# Spyder project settings
|
|
140
|
+
.spyderproject
|
|
141
|
+
.spyproject
|
|
142
|
+
|
|
143
|
+
# Rope project settings
|
|
144
|
+
.ropeproject
|
|
145
|
+
|
|
146
|
+
# mkdocs documentation
|
|
147
|
+
/site
|
|
148
|
+
|
|
149
|
+
# mypy
|
|
150
|
+
.mypy_cache/
|
|
151
|
+
.dmypy.json
|
|
152
|
+
dmypy.json
|
|
153
|
+
|
|
154
|
+
# Pyre type checker
|
|
155
|
+
.pyre/
|
|
156
|
+
|
|
157
|
+
# pytype static type analyzer
|
|
158
|
+
.pytype/
|
|
159
|
+
|
|
160
|
+
# Cython debug symbols
|
|
161
|
+
cython_debug/
|
|
162
|
+
|
|
163
|
+
# PyCharm
|
|
164
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
165
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
166
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
167
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
168
|
+
#.idea/
|
|
169
|
+
#
|
|
170
|
+
.virtual_documents/
|
|
171
|
+
lightning_logs/
|
|
172
|
+
tests/*.jpg
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
+
rev: v4.4.0
|
|
4
|
+
hooks:
|
|
5
|
+
- id: check-added-large-files
|
|
6
|
+
- id: check-merge-conflict
|
|
7
|
+
- id: check-ast
|
|
8
|
+
- id: check-json
|
|
9
|
+
- id: check-toml
|
|
10
|
+
- id: check-yaml
|
|
11
|
+
- id: end-of-file-fixer
|
|
12
|
+
- id: trailing-whitespace
|
|
13
|
+
- repo: https://github.com/psf/black
|
|
14
|
+
rev: 22.12.0
|
|
15
|
+
hooks:
|
|
16
|
+
- id: black
|
|
17
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
18
|
+
rev: v2.3.0
|
|
19
|
+
hooks:
|
|
20
|
+
- id: flake8
|
|
21
|
+
- repo: https://github.com/PyCQA/isort
|
|
22
|
+
rev: 5.12.0
|
|
23
|
+
hooks:
|
|
24
|
+
- id: isort
|
|
25
|
+
- repo: https://github.com/asottile/pyupgrade # update python syntax
|
|
26
|
+
rev: v2.34.0
|
|
27
|
+
hooks:
|
|
28
|
+
- id: pyupgrade
|
|
29
|
+
args: [--py39-plus]
|
|
30
|
+
- repo: https://github.com/kynan/nbstripout
|
|
31
|
+
rev: 0.6.0
|
|
32
|
+
hooks:
|
|
33
|
+
- id: nbstripout
|
|
34
|
+
- repo: local
|
|
35
|
+
hooks:
|
|
36
|
+
# - id: test
|
|
37
|
+
# name: test
|
|
38
|
+
# entry: make
|
|
39
|
+
# args: ["test"]
|
|
40
|
+
# language: system
|
|
41
|
+
# pass_filenames: false
|
|
42
|
+
- id: clean
|
|
43
|
+
name: clean
|
|
44
|
+
entry: make
|
|
45
|
+
args: ["clean"]
|
|
46
|
+
language: system
|
|
47
|
+
pass_filenames: false
|