dicella 0.0.2__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.
- dicella-0.0.2/.github/workflows/release.yml +33 -0
- dicella-0.0.2/.gitignore +12 -0
- dicella-0.0.2/LICENSE +21 -0
- dicella-0.0.2/PKG-INFO +28 -0
- dicella-0.0.2/README.md +12 -0
- dicella-0.0.2/pyproject.toml +36 -0
- dicella-0.0.2/setup.cfg +4 -0
- dicella-0.0.2/src/dicella/__init__.py +8 -0
- dicella-0.0.2/src/dicella/_version.py +24 -0
- dicella-0.0.2/src/dicella.egg-info/PKG-INFO +28 -0
- dicella-0.0.2/src/dicella.egg-info/SOURCES.txt +11 -0
- dicella-0.0.2/src/dicella.egg-info/dependency_links.txt +1 -0
- dicella-0.0.2/src/dicella.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
|
|
2
|
+
#### 4. `.github/workflows/release.yml`
|
|
3
|
+
|
|
4
|
+
```yaml
|
|
5
|
+
name: Release to PyPI
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
push:
|
|
9
|
+
tags: ['v*']
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
publish:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
environment: pypi
|
|
15
|
+
permissions:
|
|
16
|
+
id-token: write
|
|
17
|
+
contents: read
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
fetch-depth: 0
|
|
22
|
+
|
|
23
|
+
- uses: actions/setup-python@v5
|
|
24
|
+
with:
|
|
25
|
+
python-version: '3.11'
|
|
26
|
+
|
|
27
|
+
- name: Build & Publish
|
|
28
|
+
run: |
|
|
29
|
+
pip install build twine
|
|
30
|
+
python -m build
|
|
31
|
+
twine check dist/*
|
|
32
|
+
|
|
33
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
dicella-0.0.2/.gitignore
ADDED
dicella-0.0.2/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 HailinPan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
dicella-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dicella
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Digital Cell Analysis Toolkit
|
|
5
|
+
Author-email: Hailin Pan <hailinpan1988@163.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/HailinPan/dicella
|
|
8
|
+
Project-URL: Repository, https://github.com/HailinPan/dicella
|
|
9
|
+
Keywords: cell-analysis,bioinformatics
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# DiCellA
|
|
18
|
+
|
|
19
|
+
**Digital Cell Analysis Toolkit**
|
|
20
|
+
|
|
21
|
+
> ⚠️ **Placeholder Package**
|
|
22
|
+
> This package is currently reserved for the upcoming DiCellA project.
|
|
23
|
+
> No functional code is included in this release.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install dicella
|
dicella-0.0.2/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# DiCellA
|
|
2
|
+
|
|
3
|
+
**Digital Cell Analysis Toolkit**
|
|
4
|
+
|
|
5
|
+
> ⚠️ **Placeholder Package**
|
|
6
|
+
> This package is currently reserved for the upcoming DiCellA project.
|
|
7
|
+
> No functional code is included in this release.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install dicella
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "setuptools-scm>=8.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "dicella"
|
|
7
|
+
description = "Digital Cell Analysis Toolkit"
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
license = {text = "MIT"}
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Hailin Pan", email = "hailinpan1988@163.com"},
|
|
13
|
+
]
|
|
14
|
+
keywords = ["cell-analysis", "bioinformatics"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
20
|
+
]
|
|
21
|
+
dynamic = ["version"]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/HailinPan/dicella"
|
|
25
|
+
Repository = "https://github.com/HailinPan/dicella"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools_scm]
|
|
28
|
+
write_to = "src/dicella/_version.py"
|
|
29
|
+
fallback_version = "0.0.1.dev0"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.packages.find]
|
|
32
|
+
where = ["src"]
|
|
33
|
+
|
|
34
|
+
[tool.setuptools]
|
|
35
|
+
# 显式声明不包含任何 license-files,阻止自动生成 License-File 元数据
|
|
36
|
+
license-files = []
|
dicella-0.0.2/setup.cfg
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# file generated by vcs-versioning
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"__version__",
|
|
7
|
+
"__version_tuple__",
|
|
8
|
+
"version",
|
|
9
|
+
"version_tuple",
|
|
10
|
+
"__commit_id__",
|
|
11
|
+
"commit_id",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
version: str
|
|
15
|
+
__version__: str
|
|
16
|
+
__version_tuple__: tuple[int | str, ...]
|
|
17
|
+
version_tuple: tuple[int | str, ...]
|
|
18
|
+
commit_id: str | None
|
|
19
|
+
__commit_id__: str | None
|
|
20
|
+
|
|
21
|
+
__version__ = version = '0.0.2'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 2)
|
|
23
|
+
|
|
24
|
+
__commit_id__ = commit_id = None
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dicella
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Digital Cell Analysis Toolkit
|
|
5
|
+
Author-email: Hailin Pan <hailinpan1988@163.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/HailinPan/dicella
|
|
8
|
+
Project-URL: Repository, https://github.com/HailinPan/dicella
|
|
9
|
+
Keywords: cell-analysis,bioinformatics
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# DiCellA
|
|
18
|
+
|
|
19
|
+
**Digital Cell Analysis Toolkit**
|
|
20
|
+
|
|
21
|
+
> ⚠️ **Placeholder Package**
|
|
22
|
+
> This package is currently reserved for the upcoming DiCellA project.
|
|
23
|
+
> No functional code is included in this release.
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install dicella
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
.gitignore
|
|
2
|
+
LICENSE
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
.github/workflows/release.yml
|
|
6
|
+
src/dicella/__init__.py
|
|
7
|
+
src/dicella/_version.py
|
|
8
|
+
src/dicella.egg-info/PKG-INFO
|
|
9
|
+
src/dicella.egg-info/SOURCES.txt
|
|
10
|
+
src/dicella.egg-info/dependency_links.txt
|
|
11
|
+
src/dicella.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dicella
|