Skip to content

Instantly share code, notes, and snippets.

@malcolmgreaves
Created October 7, 2024 23:49
Show Gist options
  • Save malcolmgreaves/d3e7881d3a258a5a3647039e80beb945 to your computer and use it in GitHub Desktop.
Save malcolmgreaves/d3e7881d3a258a5a3647039e80beb945 to your computer and use it in GitHub Desktop.
setup.py for getting requirements sans version information from a requirements.txt file for install_requires
from setuptools import setup
if __name__ == "__main__":
def has_requirement(x: str) -> bool:
x = x.strip()
if x.startswith("#"):
return False
return True
def strip_version(x: str) -> str:
x = x.strip()
for s in (
">=",
"<=",
"<",
">",
"==",
):
if s in x:
return x.split(s)[0]
return x
with open("./requirements.txt", "rt") as rt:
requirements_no_versions = [strip_version(x) for x in rt if has_requirement(x)]
setup(install_requires=requirements_no_versions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment