RASMUS's picture
Upload with huggingface_hub
b0ae254
raw history blame
No virus
206 Bytes
from setuptools import setup, find_packages
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
setup(name="huggan", install_requires=requirements, packages=find_packages())