Created
October 7, 2024 23:49
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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