mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
a2a49b3f3f
Added code to set default headers and add a no-cache header to fix WebUI issues.
15 lines
374 B
Python
Executable File
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,
|
|
) |