pelmesha 0.1.3.dev0__tar.gz → 0.1.3.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.
- pelmesha-0.1.3.dev2/.github/workflows/publish_to_pypi.yml +59 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/PKG-INFO +1 -1
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha.egg-info/PKG-INFO +1 -1
- pelmesha-0.1.3.dev0/.github/workflows/publish_to_pypi.yml +0 -126
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/LICENSE.txt +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipelines/MSI_Pipeline_peaklist_grouping.ipynb +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipelines/MSI_Pipeline_peaklist_grouping.pdf +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipelines/MSI_Pipeline_processing.ipynb +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipelines/MSI_Pipeline_processing.pdf +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipelines/MSI_Pipeline_raw_spectra.ipynb +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipelines/MSI_Pipeline_raw_spectra.pdf +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipfile +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/Pipfile.lock +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/README.md +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/pyproject.toml +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/setup.cfg +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha/__init__.py +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha/align.py +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha/loaders.py +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha/pfeats.py +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha/pspectra.py +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha/utilities.py +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha.egg-info/SOURCES.txt +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha.egg-info/dependency_links.txt +0 -0
- {pelmesha-0.1.3.dev0 → pelmesha-0.1.3.dev2}/src/pelmesha.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
name: Publish pelmesha distribution 📦 to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
# tags:
|
|
6
|
+
# - "**"
|
|
7
|
+
branches:
|
|
8
|
+
- main
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
name: Build distribution 📦
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
with:
|
|
19
|
+
persist-credentials: false
|
|
20
|
+
fetch-depth: 0
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
uses: actions/setup-python@v5
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.x"
|
|
25
|
+
|
|
26
|
+
- name: Install pypa/build
|
|
27
|
+
run: >-
|
|
28
|
+
python3 -m
|
|
29
|
+
pip install
|
|
30
|
+
build
|
|
31
|
+
--user
|
|
32
|
+
- name: Build a binary wheel and a source tarball
|
|
33
|
+
run: python3 -m build
|
|
34
|
+
- name: Store the distribution packages
|
|
35
|
+
uses: actions/upload-artifact@v4
|
|
36
|
+
with:
|
|
37
|
+
name: python-package-distributions
|
|
38
|
+
path: dist/
|
|
39
|
+
publish-to-pypi:
|
|
40
|
+
name: >-
|
|
41
|
+
Publish Python 🐍 distribution 📦 to PyPI
|
|
42
|
+
#if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
|
43
|
+
|
|
44
|
+
needs:
|
|
45
|
+
- build
|
|
46
|
+
runs-on: ubuntu-latest
|
|
47
|
+
environment:
|
|
48
|
+
name: pypi
|
|
49
|
+
url: https://pypi.org/p/pelmesha
|
|
50
|
+
permissions:
|
|
51
|
+
id-token: write # IMPORTANT: mandatory for trusted publishing
|
|
52
|
+
steps:
|
|
53
|
+
- name: Download all the dists
|
|
54
|
+
uses: actions/download-artifact@v4
|
|
55
|
+
with:
|
|
56
|
+
name: python-package-distributions
|
|
57
|
+
path: dist/
|
|
58
|
+
- name: Publish distribution 📦 to PyPI
|
|
59
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pelmesha
|
|
3
|
-
Version: 0.1.3.
|
|
3
|
+
Version: 0.1.3.dev2
|
|
4
4
|
Summary: A package for proccesing and aligning peaklist Mass-spectrometry imaging data from .imzml files
|
|
5
5
|
Author-email: Andrew Kuzin <Kuzya-90@bk.ru>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pelmesha
|
|
3
|
-
Version: 0.1.3.
|
|
3
|
+
Version: 0.1.3.dev2
|
|
4
4
|
Summary: A package for proccesing and aligning peaklist Mass-spectrometry imaging data from .imzml files
|
|
5
5
|
Author-email: Andrew Kuzin <Kuzya-90@bk.ru>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
# name: Publish Python 🐍 distribution 📦 to PyPI
|
|
2
|
-
|
|
3
|
-
# on:
|
|
4
|
-
# push:
|
|
5
|
-
# branches:
|
|
6
|
-
# - main
|
|
7
|
-
|
|
8
|
-
# jobs:
|
|
9
|
-
# build:
|
|
10
|
-
# name: Build distribution 📦
|
|
11
|
-
# runs-on: ubuntu-latest
|
|
12
|
-
|
|
13
|
-
# steps:
|
|
14
|
-
# - uses: actions/checkout@v4
|
|
15
|
-
# with:
|
|
16
|
-
# persist-credentials: false
|
|
17
|
-
# fetch-depth: 0
|
|
18
|
-
# - name: Set up Python
|
|
19
|
-
# uses: actions/setup-python@v5
|
|
20
|
-
# with:
|
|
21
|
-
# python-version: "3.x"
|
|
22
|
-
|
|
23
|
-
# - name: Install pypa/build
|
|
24
|
-
# run: >-
|
|
25
|
-
# python3 -m
|
|
26
|
-
# pip install
|
|
27
|
-
# build
|
|
28
|
-
# --user
|
|
29
|
-
# - name: Build a binary wheel and a source tarball
|
|
30
|
-
# run: python3 -m build
|
|
31
|
-
# - name: Store the distribution packages
|
|
32
|
-
# uses: actions/upload-artifact@v4
|
|
33
|
-
# with:
|
|
34
|
-
# name: python-package-distributions
|
|
35
|
-
# path: dist/
|
|
36
|
-
# publish-to-pypi:
|
|
37
|
-
# name: Publish Python 🐍 distribution 📦 to PyPI
|
|
38
|
-
# needs:
|
|
39
|
-
# - build
|
|
40
|
-
# runs-on: ubuntu-latest
|
|
41
|
-
|
|
42
|
-
# environment:
|
|
43
|
-
# name: pypi
|
|
44
|
-
# url: https://pypi.org/p/pelmesha
|
|
45
|
-
|
|
46
|
-
# permissions:
|
|
47
|
-
# id-token: write # IMPORTANT: mandatory for trusted publishing
|
|
48
|
-
|
|
49
|
-
# steps:
|
|
50
|
-
# - name: Download all the dists
|
|
51
|
-
# uses: actions/download-artifact@v4
|
|
52
|
-
# with:
|
|
53
|
-
# name: python-package-distributions
|
|
54
|
-
# path: dist/
|
|
55
|
-
# - name: Publish distribution 📦 to PyPI
|
|
56
|
-
# uses: pypa/gh-action-pypi-publish@release/v1
|
|
57
|
-
|
|
58
|
-
# # steps:
|
|
59
|
-
# # - name: Download all the dists
|
|
60
|
-
# # uses: actions/download-artifact@v4
|
|
61
|
-
# # with:
|
|
62
|
-
# # name: python-package-distributions
|
|
63
|
-
# # path: dist/
|
|
64
|
-
# # - name: Publish distribution 📦 to TestPyPI
|
|
65
|
-
# # uses: pypa/gh-action-pypi-publish@release/v1
|
|
66
|
-
# # with:
|
|
67
|
-
# # repository-url: https://test.pypi.org/legacy/
|
|
68
|
-
# # name: Publish Python 🐍 distribution 📦 to PyPI
|
|
69
|
-
name: Publish pelmesha distribution 📦 to PyPI
|
|
70
|
-
|
|
71
|
-
on:
|
|
72
|
-
push:
|
|
73
|
-
tags:
|
|
74
|
-
- "*"
|
|
75
|
-
# branches:
|
|
76
|
-
# - main
|
|
77
|
-
|
|
78
|
-
jobs:
|
|
79
|
-
build:
|
|
80
|
-
name: Build distribution 📦
|
|
81
|
-
runs-on: ubuntu-latest
|
|
82
|
-
|
|
83
|
-
steps:
|
|
84
|
-
- uses: actions/checkout@v4
|
|
85
|
-
with:
|
|
86
|
-
persist-credentials: false
|
|
87
|
-
fetch-depth: 0
|
|
88
|
-
- name: Set up Python
|
|
89
|
-
uses: actions/setup-python@v5
|
|
90
|
-
with:
|
|
91
|
-
python-version: "3.x"
|
|
92
|
-
|
|
93
|
-
- name: Install pypa/build
|
|
94
|
-
run: >-
|
|
95
|
-
python3 -m
|
|
96
|
-
pip install
|
|
97
|
-
build
|
|
98
|
-
--user
|
|
99
|
-
- name: Build a binary wheel and a source tarball
|
|
100
|
-
run: python3 -m build
|
|
101
|
-
- name: Store the distribution packages
|
|
102
|
-
uses: actions/upload-artifact@v4
|
|
103
|
-
with:
|
|
104
|
-
name: python-package-distributions
|
|
105
|
-
path: dist/
|
|
106
|
-
publish-to-pypi:
|
|
107
|
-
name: >-
|
|
108
|
-
Publish Python 🐍 distribution 📦 to PyPI
|
|
109
|
-
#if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
|
110
|
-
|
|
111
|
-
needs:
|
|
112
|
-
- build
|
|
113
|
-
runs-on: ubuntu-latest
|
|
114
|
-
environment:
|
|
115
|
-
name: pypi
|
|
116
|
-
url: https://pypi.org/p/pelmesha
|
|
117
|
-
permissions:
|
|
118
|
-
id-token: write # IMPORTANT: mandatory for trusted publishing
|
|
119
|
-
steps:
|
|
120
|
-
- name: Download all the dists
|
|
121
|
-
uses: actions/download-artifact@v4
|
|
122
|
-
with:
|
|
123
|
-
name: python-package-distributions
|
|
124
|
-
path: dist/
|
|
125
|
-
- name: Publish distribution 📦 to PyPI
|
|
126
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
|
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
|