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.
@@ -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