11 lines
357 B
Python
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'],
|
||
|
)
|