from setuptools import setup, find_packages setup( name='comedyGenerator', version='1.0.3', description='Ifunny API scrapper for downloading videos and gifs.', author='msglm', author_email='msglm@techchud.xyz', url="https://git.techchud.xyz/comedyGenerator/", packages=find_packages(), #same as name install_requires=['ffmpeg', 'xdg'], #external packages as dependencies entry_points=''' [console_scripts] comedyGenerator=comedyGenerator.comedyGenerator:args_parser ''' )