mousetumorpy 0.0.1__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.
- mousetumorpy-0.0.1/.github/workflows/publish.yml +27 -0
- mousetumorpy-0.0.1/.gitignore +26 -0
- mousetumorpy-0.0.1/LICENSE +661 -0
- mousetumorpy-0.0.1/MANIFEST.in +5 -0
- mousetumorpy-0.0.1/PKG-INFO +772 -0
- mousetumorpy-0.0.1/README.md +75 -0
- mousetumorpy-0.0.1/pyproject.toml +60 -0
- mousetumorpy-0.0.1/setup.cfg +4 -0
- mousetumorpy-0.0.1/src/mousetumorpy/__init__.py +13 -0
- mousetumorpy-0.0.1/src/mousetumorpy/_version.py +21 -0
- mousetumorpy-0.0.1/src/mousetumorpy/cli.py +315 -0
- mousetumorpy-0.0.1/src/mousetumorpy/configuration.py +19 -0
- mousetumorpy-0.0.1/src/mousetumorpy/lungs.py +233 -0
- mousetumorpy-0.0.1/src/mousetumorpy/nnunet.py +101 -0
- mousetumorpy-0.0.1/src/mousetumorpy/register.py +101 -0
- mousetumorpy-0.0.1/src/mousetumorpy/track.py +478 -0
- mousetumorpy-0.0.1/src/mousetumorpy.egg-info/PKG-INFO +772 -0
- mousetumorpy-0.0.1/src/mousetumorpy.egg-info/SOURCES.txt +20 -0
- mousetumorpy-0.0.1/src/mousetumorpy.egg-info/dependency_links.txt +1 -0
- mousetumorpy-0.0.1/src/mousetumorpy.egg-info/entry_points.txt +2 -0
- mousetumorpy-0.0.1/src/mousetumorpy.egg-info/requires.txt +12 -0
- mousetumorpy-0.0.1/src/mousetumorpy.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Build the package and publish it to PyPI on tag push.
|
|
2
|
+
name: Publish to PyPI
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "*"
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
name: publish
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout source
|
|
14
|
+
uses: actions/checkout@v3
|
|
15
|
+
- name: Set up Python 3.9
|
|
16
|
+
uses: actions/setup-python@v4
|
|
17
|
+
with:
|
|
18
|
+
python-version: 3.9
|
|
19
|
+
- name: Build package
|
|
20
|
+
run: |
|
|
21
|
+
python -m pip install -U pip build
|
|
22
|
+
python -m build
|
|
23
|
+
- name: Publish
|
|
24
|
+
uses: pypa/gh-action-pypi-publish@v1.5.0
|
|
25
|
+
with:
|
|
26
|
+
user: __token__
|
|
27
|
+
password: ${{ secrets.TWINE_API_KEY }}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*$py.class
|
|
4
|
+
old/
|
|
5
|
+
data/
|
|
6
|
+
env/
|
|
7
|
+
build/
|
|
8
|
+
dist/
|
|
9
|
+
downloads/
|
|
10
|
+
eggs/
|
|
11
|
+
.eggs/
|
|
12
|
+
*.egg-info/
|
|
13
|
+
.installed.cfg
|
|
14
|
+
*.egg
|
|
15
|
+
.tox/
|
|
16
|
+
.coverage
|
|
17
|
+
.coverage.*
|
|
18
|
+
.cache
|
|
19
|
+
docs/_build/
|
|
20
|
+
.idea/
|
|
21
|
+
venv/
|
|
22
|
+
.vscode/
|
|
23
|
+
.ipynb_checkpoints
|
|
24
|
+
.python-version
|
|
25
|
+
.DS_Store
|
|
26
|
+
**/_version.py
|