hf-cli/setup.py

11 lines
357 B
Python
Raw Permalink Normal View History

2024-11-16 01:02:10 +01:00
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'],
)