spymot 2.1.2.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.2.dev0 → spymot-2.1.2.dev2}/.github/workflows/publish.yml +4 -5
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/PKG-INFO +1 -1
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/_version.py +3 -3
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/PKG-INFO +1 -1
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/SOURCES.txt +1 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/.github/workflows/github-packages.yml +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/.gitignore +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/CHANGELOG.md +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/LICENSE +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/MANIFEST.in +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/README.md +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/__pycache__/context_aware_detector.cpython-312.pyc +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/__pycache__/enhanced_analyzer.cpython-312.pyc +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/__pycache__/enhanced_demo.cpython-312.pyc +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/__pycache__/enhanced_motifs_db.cpython-312.pyc +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/__pycache__/external_tools.cpython-312.pyc +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/pyproject.toml +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/setup.cfg +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/__init__.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/cli.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v1/__init__.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v1/cli.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/__init__.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/__init__.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/enhanced_cli.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/enhanced_demo.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot/v2/scripts/interactive_cli.py +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/dependency_links.txt +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/entry_points.txt +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/requires.txt +0 -0
- {spymot-2.1.2.dev0 → spymot-2.1.2.dev2}/src/spymot.egg-info/top_level.txt +0 -0
File without changes
|
@@ -137,8 +137,6 @@ jobs:
|
|
137
137
|
(github.event_name == 'workflow_dispatch' &&
|
138
138
|
github.event.inputs.publish_to_testpypi == 'true') ||
|
139
139
|
startsWith(github.ref, 'refs/tags/v')
|
140
|
-
permissions:
|
141
|
-
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
142
140
|
|
143
141
|
steps:
|
144
142
|
- name: Download artifacts
|
@@ -156,6 +154,7 @@ jobs:
|
|
156
154
|
uses: pypa/gh-action-pypi-publish@release/v1
|
157
155
|
with:
|
158
156
|
repository-url: https://test.pypi.org/legacy/
|
157
|
+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
|
159
158
|
|
160
159
|
publish-pypi:
|
161
160
|
needs: build
|
@@ -165,8 +164,6 @@ jobs:
|
|
165
164
|
(github.event_name == 'workflow_dispatch' &&
|
166
165
|
github.event.inputs.publish_to_pypi == 'true') ||
|
167
166
|
startsWith(github.ref, 'refs/tags/v')
|
168
|
-
permissions:
|
169
|
-
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
170
167
|
|
171
168
|
steps:
|
172
169
|
- name: Download artifacts
|
@@ -181,4 +178,6 @@ jobs:
|
|
181
178
|
python-version: '3.11'
|
182
179
|
|
183
180
|
- name: Publish to PyPI
|
184
|
-
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.2.
|
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.2.
|
32
|
-
__version_tuple__ = version_tuple = (2, 1, 2, '
|
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.2.
|
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
|