libs for cameramonit, ocr, fin-officer, cfo, and other projects
Project description
config.pyfunc.com
START
setup local environment
python3 -m venv pytest-env
source pytest-env/bin/activate
Install required tools
pip install setuptools wheel setuptools-git-versioning build twine pip-tools toml path
pip install --upgrade setuptools_scm
pip install --upgrade twine
pip list
UPDATE
VERSION=1.2.15
#echo $VERSION > src/pyfunc_config/VERSION
echo "__version__ = ${VERSION}" >> src/pyfunc_config/__init__.py
quick update
VERSION=1.2.15
echo "__version__ = ${VERSION}" >> src/pyfunc_config/__init__.py
git status
git tag $VERSION
git push origin --tags
git add pyproject.toml
git add .gitignore
git add *.py
git add *.md
git add src/*
git commit -m "new release"
git push
python -m setuptools_git_versioning
rm -rf build dist *.egg-info
python -m build
python -m twine upload dist/*
DETAILS
git tag 1.2.8
git push origin --tags
VERSION
python -m setuptools_git_versioning
update requirements
pip-compile pyproject.toml
pip-sync
build and publish your package:
Clean
rm -rf build dist *.egg-info
Build the Package with debug
python -m build --wheel -n
Build the Package
python -m build
Publish to PyPI
python -m twine upload dist/*
Another
Here's an updated GitHub Actions workflow to include the script execution:
py generate_init.py -p src/pyfunc_config
py -m build
twine check dist/*
test before publish
twine upload -r testpypi dist/*
publish
twine upload dist/*
Semantic versioning
The idea of semantic versioning (or SemVer) is to use 3-part version numbers, major.minor.patch, where the project author increments:
major when they make incompatible API changes,
minor when they add functionality in a backwards-compatible manner, and
patch, when they make backwards-compatible bug fixes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyfunc_config-1.2.15.dev1.tar.gz
(24.8 kB
view details)
Built Distribution
File details
Details for the file pyfunc_config-1.2.15.dev1.tar.gz
.
File metadata
- Download URL: pyfunc_config-1.2.15.dev1.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fb0d0bca5171386218d0ec79c3da6f9c80ca928a31f38a65d7c3db3b553cfd9 |
|
MD5 | 12f587bcfd10c8a877e8078c1362d3d3 |
|
BLAKE2b-256 | 651c7d476e89f5da6d60b4414d8165cd47bd1f3dd5d804b93bd1aa247a17d09b |
File details
Details for the file pyfunc_config-1.2.15.dev1-py3-none-any.whl
.
File metadata
- Download URL: pyfunc_config-1.2.15.dev1-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cb725500c09cec90966c2e0cca26bbabfc241efb178bc054631bd6392770b1b |
|
MD5 | 73f17239086526c141728fe0a09d36ef |
|
BLAKE2b-256 | a6327314f35243d3c4b0cccb5e44d8bcdda3c622b4c09ca655bfcc61ca728878 |