I checked the code and you are 99% of the way to get pip install pattern-seek working. I thought this would be something I could do, but it requires me to create an account and I didn’t think that was the right thing to do because project owner and all. Create an account on https://pypi.org/account/register/ first.
Build the distribution:
pip install build
python -m build
dist/
├── pattern_seek-0.1.0.tar.gz
└── pattern_seek-0.1.0-py3-none-any.whl
Upload it to PyPI
Once it is uploaded pip install pattern-seek should work fine.
Feedback from @osaroadade
I checked the code and you are 99% of the way to get pip install pattern-seek working. I thought this would be something I could do, but it requires me to create an account and I didn’t think that was the right thing to do because project owner and all. Create an account on https://pypi.org/account/register/ first.
Build the distribution:
Upload it to PyPI
twine upload dist/* Once it is uploaded pip install pattern-seek should work fine.
Feedback from @osaroadade