hf-cli/setup.py
2024-11-16 01:12:49 +01:00

11 lines
357 B
Python

from setuptools import find_packages, setup
setup(
name='hf-cli',
version='0.1',
description='Huafetcher CLI',
author='Daniel Demus',
author_email='daniel-git@demus.dk',
packages=find_packages(),
install_requires=['argparse', 'tempfile', 'getpass', 'logging', 'os', 'json', 'types', 'json', 'random', 'shutil', 'requests', 'urllib'],
)