@platforma-open/milaboratories.import-vdj.xlsx-to-csv 1.1.0
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"python","platform":"linux-x64","registryURL":"https://bin.pl-open.science/","registryName":"platforma-open","remoteArtifactLocation":"software/platforma-open/milaboratories.import-vdj.xlsx-to-csv/main/1.1.0.tgz","uploadPath":"software/platforma-open/milaboratories.import-vdj.xlsx-to-csv/main/1.1.0.tgz"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"docker","platform":"linux-x64","remoteArtifactLocation":"containers.pl-open.science/milaboratories/pl-containers:platforma-open.milaboratories.import-vdj.xlsx-to-csv.main.eb3d5aeb0387","entrypoint":[]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Auto-generated Dockerfile for Python package
|
|
2
|
+
FROM python:3.12-slim
|
|
3
|
+
|
|
4
|
+
WORKDIR /app
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# Always keep basic python packaging tools fresh to avoid CVEs even in old python versions
|
|
9
|
+
RUN pip install --upgrade pip wheel setuptools
|
|
10
|
+
|
|
11
|
+
# Install dependencies to leverage Docker cache
|
|
12
|
+
COPY requirements.txt .
|
|
13
|
+
RUN pip install --no-cache-dir -r requirements.txt
|
|
14
|
+
|
|
15
|
+
# Copy package source
|
|
16
|
+
COPY . /app
|
|
17
|
+
|
|
18
|
+
# Set Python path
|
|
19
|
+
ENV PYTHONPATH=/app
|
|
20
|
+
|
|
21
|
+
# Default command (will be overridden by entrypoint)
|
|
22
|
+
CMD ["bash"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"@platforma-open/milaboratories.import-vdj.xlsx-to-csv:main","binary":{"type":"python","registry":"platforma-open","package":"software/platforma-open/milaboratories.import-vdj.xlsx-to-csv/main/1.1.0.tgz","cmd":["python","{pkg}/main.py"],"envVars":[],"runEnv":{"name":"@platforma-open/milaboratories.runenv-python-3:3.12.10","type":"python","registry":"platforma-open","package":"software/platforma-open/milaboratories.runenv-python-3.12.10/main/1.3.24-{os}-{arch}.tgz","python-version":"3.12.10","envVars":[],"binDir":"bin"},"toolset":"pip","dependencies":{"requirements":"requirements.txt"}},"docker":{"tag":"containers.pl-open.science/milaboratories/pl-containers:platforma-open.milaboratories.import-vdj.xlsx-to-csv.main.eb3d5aeb0387","entrypoint":[],"cmd":["python","{pkg}/main.py"],"pkg":"/app"}}
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@platforma-open/milaboratories.import-vdj.xlsx-to-csv",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Convert the first worksheet of a workbook to CSV so the pipeline only ever sees csv/tsv",
|
|
5
|
+
"files": [
|
|
6
|
+
"./dist/**/*"
|
|
7
|
+
],
|
|
8
|
+
"dependencies": {},
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@platforma-sdk/package-builder": "3.15.0",
|
|
11
|
+
"@platforma-open/milaboratories.runenv-python-3": "^1.1.16"
|
|
12
|
+
},
|
|
13
|
+
"block-software": {
|
|
14
|
+
"entrypoints": {
|
|
15
|
+
"main": {
|
|
16
|
+
"binary": {
|
|
17
|
+
"artifact": {
|
|
18
|
+
"type": "python",
|
|
19
|
+
"registry": "platforma-open",
|
|
20
|
+
"environment": "@platforma-open/milaboratories.runenv-python-3:3.12.10",
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"toolset": "pip",
|
|
23
|
+
"requirements": "requirements.txt"
|
|
24
|
+
},
|
|
25
|
+
"root": "./src"
|
|
26
|
+
},
|
|
27
|
+
"cmd": [
|
|
28
|
+
"python",
|
|
29
|
+
"{pkg}/main.py"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "pl-pkg build",
|
|
37
|
+
"do-pack": "rm -f *.tgz && pl-pkg build && pnpm pack && mv platforma-open*.tgz package.tgz",
|
|
38
|
+
"changeset": "changeset",
|
|
39
|
+
"version-packages": "changeset version"
|
|
40
|
+
}
|
|
41
|
+
}
|