Compare commits

..

1 Commits
0.1.0 ... main

Author SHA1 Message Date
Daniel Demus
1a8eec245a Add setup.py 2024-11-16 01:12:49 +01:00
7 changed files with 11 additions and 0 deletions

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
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'],
)