So, I verified that you do not use any requirements.txt file or even a pyproject.toml file.
To make your code more easily reproducible, I thought about contributing to your project adding a setup using poetry. Besides that, using poetry, you can create .whl files and distribute your package.
To solve this issue, the following points need to be resolved:
[x] Create of the pyproject.toml with the necessary information about dependencies
[x] Document changes into the README.md to show the package building process
So, I verified that you do not use any
requirements.txt
file or even apyproject.toml
file.To make your code more easily reproducible, I thought about contributing to your project adding a setup using poetry. Besides that, using poetry, you can create
.whl
files and distribute your package.To solve this issue, the following points need to be resolved:
pyproject.toml
with the necessary information about dependenciesREADME.md
to show the package building process