blob: 6d2d8e23f14899b95abd2f44b53ed7b997a83134 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
'''
)
|