spymot 2.1.1.dev0__tar.gz → 2.1.2.dev2__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.
- spymot-2.1.2.dev2/.api_token_fix +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/.github/workflows/publish.yml +4 -7
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/PKG-INFO +1 -1
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/_version.py +3 -3
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/PKG-INFO +1 -1
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/SOURCES.txt +1 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/.github/workflows/github-packages.yml +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/.gitignore +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/CHANGELOG.md +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/LICENSE +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/MANIFEST.in +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/README.md +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/__pycache__/context_aware_detector.cpython-312.pyc +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/__pycache__/enhanced_analyzer.cpython-312.pyc +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/__pycache__/enhanced_demo.cpython-312.pyc +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/__pycache__/enhanced_motifs_db.cpython-312.pyc +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/__pycache__/external_tools.cpython-312.pyc +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/pyproject.toml +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/setup.cfg +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/__init__.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/cli.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v1/__init__.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v1/cli.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/__init__.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/__init__.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/enhanced_cli.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/enhanced_demo.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/interactive_cli.py +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/dependency_links.txt +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/entry_points.txt +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/requires.txt +0 -0
- {spymot-2.1.1.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/top_level.txt +0 -0
File without changes
|
@@ -133,13 +133,10 @@ jobs:
|
|
133
133
|
publish-testpypi:
|
134
134
|
needs: build
|
135
135
|
runs-on: ubuntu-latest
|
136
|
-
environment: release # Add environment for trusted publishing
|
137
136
|
if: |
|
138
137
|
(github.event_name == 'workflow_dispatch' &&
|
139
138
|
github.event.inputs.publish_to_testpypi == 'true') ||
|
140
139
|
startsWith(github.ref, 'refs/tags/v')
|
141
|
-
permissions:
|
142
|
-
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
143
140
|
|
144
141
|
steps:
|
145
142
|
- name: Download artifacts
|
@@ -157,18 +154,16 @@ jobs:
|
|
157
154
|
uses: pypa/gh-action-pypi-publish@release/v1
|
158
155
|
with:
|
159
156
|
repository-url: https://test.pypi.org/legacy/
|
157
|
+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
|
160
158
|
|
161
159
|
publish-pypi:
|
162
160
|
needs: build
|
163
161
|
runs-on: ubuntu-latest
|
164
|
-
environment: release # Add environment for trusted publishing
|
165
162
|
if: |
|
166
163
|
github.event_name == 'release' ||
|
167
164
|
(github.event_name == 'workflow_dispatch' &&
|
168
165
|
github.event.inputs.publish_to_pypi == 'true') ||
|
169
166
|
startsWith(github.ref, 'refs/tags/v')
|
170
|
-
permissions:
|
171
|
-
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
172
167
|
|
173
168
|
steps:
|
174
169
|
- name: Download artifacts
|
@@ -183,4 +178,6 @@ jobs:
|
|
183
178
|
python-version: '3.11'
|
184
179
|
|
185
180
|
- name: Publish to PyPI
|
186
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
181
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
182
|
+
with:
|
183
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: spymot
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.2.dev2
|
4
4
|
Summary: Advanced Protein Motif Detection with AlphaFold Structural Validation
|
5
5
|
Author-email: Erfan Zohrabi <erfanzohrabi.ez@gmail.com>
|
6
6
|
Maintainer-email: Erfan Zohrabi <erfanzohrabi.ez@gmail.com>
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
28
28
|
commit_id: COMMIT_ID
|
29
29
|
__commit_id__: COMMIT_ID
|
30
30
|
|
31
|
-
__version__ = version = '2.1.
|
32
|
-
__version_tuple__ = version_tuple = (2, 1,
|
31
|
+
__version__ = version = '2.1.2.dev2'
|
32
|
+
__version_tuple__ = version_tuple = (2, 1, 2, 'dev2')
|
33
33
|
|
34
|
-
__commit_id__ = commit_id = '
|
34
|
+
__commit_id__ = commit_id = 'g450903486'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: spymot
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.2.dev2
|
4
4
|
Summary: Advanced Protein Motif Detection with AlphaFold Structural Validation
|
5
5
|
Author-email: Erfan Zohrabi <erfanzohrabi.ez@gmail.com>
|
6
6
|
Maintainer-email: Erfan Zohrabi <erfanzohrabi.ez@gmail.com>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|