CoolFace
Apppublic

tsi-org/tango

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
setup.py7 linesDownload Raw Back to root
1import os2requirement_path = "requirements.txt"3install_requires = []4if os.path.isfile(requirement_path):5    with open(requirement_path) as f:6        install_requires = f.read().splitlines()7setup(name="mypackage", install_requires=install_requires, [...])