tar.gz missing requirements.txt
Closed this issue · 1 comments
The tar.gz package built with pep517 and uploaded to pypi is missing the requirements.txt file.
I suppose this is intended behavior from pep517, but the problem is that it's impossible reproduce a build solely from the tar.gz file since setup.py uses requirements.txt here to populate the install_requires field.
Hi, this issue has been resolved with the latest release 3.4.0 where we have migrated from setup.py method (with setuptools backend) to pyproject.toml (with Hatch backend) [the same file is present in PyPI's tar.gz archive too] this eliminates the need to bundle the requirements.txt file for building the project since the dependencies are already listed in pyproject.toml.
tldr-python-client/pyproject.toml
Lines 50 to 62 in fa495f2