libs for cameramonit, ocr, fin-officer, cfo, and other projects
pip install pyfunc2
git clone https://github.com/pyfunc/lib.git pyfunc
python3 -m venv pytest-env
source pytest-env/bin/activate
pip install --upgrade pip
pip install pytest
run the test, execute the pytest command:
pytest
simple method to generate a requirements.txt file is to pipe them,
pip freeze > requirements.txt
pip freeze > requirements/runtime.txt
[remote rejected] (refusing to allow a Personal Access Token to create or update workflow `.github/workflows/python-app.yml` without `workflow` scope)
Problem z odrzuceniem tokena dostępu osobistego (Personal Access Token, PAT) podczas próby aktualizacji pliku workflow, musisz zaktualizować uprawnienia swojego tokena.
-
Przejdź do ustawień GitHub:
- Kliknij na swój awatar w prawym górnym rogu GitHub
- Wybierz "Settings"
-
Przejdź do ustawień deweloperskich:
- W lewym menu wybierz "Developer settings"
-
Zarządzaj tokenami dostępu:
- Wybierz "Personal access tokens"
- Następnie "Tokens (classic)"
-
Utwórz nowy token lub zaktualizuj istniejący:
- Jeśli tworzysz nowy, kliknij "Generate new token"
- Jeśli aktualizujesz istniejący, znajdź odpowiedni token i kliknij "Edit"
-
Dodaj uprawnienie "workflow":
- Przewiń do sekcji "Select scopes"
- Zaznacz pole obok "workflow"
-
Zapisz zmiany:
- Przewiń na dół i kliknij "Generate token" (dla nowego) lub "Update token" (dla istniejącego)
-
Skopiuj nowy token:
- Upewnij się, że skopiowałeś nowy token, ponieważ nie będziesz mógł go zobaczyć ponownie
-
Zaktualizuj token w swoim lokalnym repozytorium:
- Jeśli używasz HTTPS, zaktualizuj swoje dane logowania
- Jeśli używasz SSH, upewnij się, że Twój klucz SSH jest poprawnie skonfigurowany
-
Spróbuj ponownie wykonać push:
- Użyj nowego tokena do autoryzacji
Pamiętaj, że tokeny dostępu osobistego są bardzo wrażliwe na bezpieczeństwo. Traktuj je jak hasła i nigdy nie udostępniaj ich publicznie. Jeśli przypadkowo ujawnisz swój token, natychmiast go usuń i wygeneruj nowy.
Po wykonaniu tych kroków, powinieneś być w stanie zaktualizować plik workflow bez problemów. Jeśli nadal napotkasz problemy, upewnij się, że masz odpowiednie uprawnienia w repozytorium i że workflow nie są zablokowane przez ustawienia organizacji lub repozytorium.
our local repo and want to push it to a remote repo.
create a PAT (personal access token): official doc here. Make sure to tick the box "workflow" when creating it. In the terminal, instead of the classic
git remote add origin https://github.com/<account>/<repo>.git
swap it by
git remote add origin https://<PAT>@github.com/<account>/<repo>.git
example
# check
git remote -v
PAT=...
git remote add origin https://$PAT@github.com/pyfunc/lib.git
# OR update:
git remote set-url origin https://$PAT@github.com/pyfunc/lib.git
# check
git remote -v
git push
Follow-up with the classic git branch -M main and git push -u origin main
That worked for me. Hopefully for you too.
Creating a PyPI Project with a Trusted Publisher - PyPI Docs
To create a tag on your current branch, run this:
git tag <tagname>
If you want to include a description with your tag, add -a to create an annotated tag:
git tag <tagname> -a
This will create a local tag with the current state of the branch you are on. When pushing to your remote repo, tags are NOT included by default. You will need to explicitly say that you want to push your tags to your remote repo:
git push origin --tags
example:
git tag 0.1.12
git push origin --tags
pip install build
pip install build hatchling
py -m build
The __init__.py
file is used to mark a directory as a Python package and can also be used to initialize code, define the package's public API, and handle package-level variables or imports.
Here’s a basic guide on preparing the __init__.py
file for your project located in the src/pyfunc2/
directory.
- Creating the
__init__.py
File:- Navigate to
src/pyfunc2/
directory. - Create an
__init__.py
file in this directory.
- Navigate to
Here is a basic example of what this file might contain:
Here's what your final project structure might look like:
my_project/
├── src/
│ └── pyfunc2/
│ ├── __init__.py
│ ├── module1.py
│ └── module2.py
├── pyproject.toml
├── README.md
└── requirements.txt
Hoe generate an __init__.py
file automatically based on information in pyproject.toml
typically
Let's break down how you can achieve this:
-
Understand the data to be included in
__init__.py
: Essentially, you might want to include metadata (like version), and possibly auto-imports of modules/classes/functions. -
Create a script to generate
__init__.py
: This script would readpyproject.toml
, extract the relevant information, and generate the__init__.py
file.
You will need toml
for parsing pyproject.toml
. Install it using pip
.
pip install toml
Create a Python script, e.g., generate_init.py
, at the root of your project:
Ensure that your generate_init.py
script runs as part of your build process in your GitHub Actions workflow.
Here's an updated GitHub Actions workflow to include the script execution:
py generate_init.py -p src/pyfunc2
py generate_init.py -p src/pyfunc2/config
py generate_init.py -p src/pyfunc2/csv
py generate_init.py -p src/pyfunc2/email
py generate_init.py -p src/pyfunc2/file
py generate_init.py -p src/pyfunc2/function
py generate_init.py -p src/pyfunc2/github
py generate_init.py -p src/pyfunc2/local
py generate_init.py -p src/pyfunc2/markdown
py generate_init.py -p src/pyfunc2/ml
py generate_init.py -p src/pyfunc2/ocr
py generate_init.py -p src/pyfunc2/report
py generate_init.py -p src/pyfunc2/serialization
py generate_init.py -p src/pyfunc2/text
py -m build
py -m incremental.update pyfunc2 --newversion=0.1.18
py -m incremental.update pyfunc2 --create
py -m incremental.update pyfunc2 --patch
py -m incremental.update pyfunc2 --rc
py -m incremental.update pyfunc2
pip install dist/pyfunc2-0.1.15-py3-none-any.whl
pip install 'validate-pyproject[all]'
validate-pyproject pyproject.toml
- Create virtual environment
rm -rf venv
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
I see a persistent issue with your package publication process. Let me help you resolve these problems:
- Version Detection Problem The error messages show that the version is not being correctly detected:
❌ Could not find version in src/pyfunc2/__init__.py
❌ Could not find version in ./src/pyfunc2/_version.py
❌ Could not find version in ./pyproject.toml
-
License Classifier Issue There's an ongoing problem with the license classifier in the
pyproject.toml
. -
Replace your existing
pyproject.toml
with the new version -
Create
src/pyfunc2/_version.py
with the content I provided -
Remove any existing
setup.py
if it exists -
Use
python -m build
to create distribution -
Use
twine upload dist/*
to publish
Recommended workflow:
# Ensure you're in your project root
python -m pip install --upgrade build twine
python -m build
python -m twine upload dist/*