1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00
SickRage/autoProcessTV/setup.py
echel0n a2a49b3f3f Updated setup package for autoProcessTV to auto-install depends.
Added code to set default headers and add a no-cache header to fix WebUI issues.
2014-12-13 06:09:23 -08:00

15 lines
374 B
Python
Executable File

from setuptools import setup
setup(name='sickrage',
version='3.3.2',
description='Automated Video File Manager',
url='http://github.com/SiCKRAGETV/SickRage',
author='echel0n',
author_email='sickrage.tv@gmail.com',
license='MIT',
packages=['funniest'],
install_requires=[
'requests',
],
zip_safe=False,
)