forked from SickChill/sickchill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (56 loc) · 1.73 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"""
Use setup tools to install sickrage
"""
import os
from setuptools import find_packages, setup
from babel.messages import frontend as babel
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
with open(os.path.join(ROOT, 'readme.md'), 'r') as r:
long_description = r.read()
setup(
name="sickrage",
version="0.0.1",
description="Automatic Video Library Manager for TV Shows",
long_description=long_description,
url='https://sickrage.github.io',
download_url='https://github.com/SickRage/SickRage.git',
author='miigotu',
author_email='[email protected]',
license='GPLv2',
packages=find_packages(),
install_requires=[
'pytz',
'requests'
],
test_suite="tests",
tests_require=[
'coveralls',
'nose',
'rednose',
'mock',
'vcrpy-unittest'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Multimedia :: Video',
],
cmdclass={
'compile_catalog': babel.compile_catalog,
'extract_messages': babel.extract_messages,
'init_catalog': babel.init_catalog,
'update_catalog': babel.update_catalog
},
message_extractors={
'gui': [
('**/views/**.mako', 'mako', {'input_encoding': 'utf-8'}),
# @OmgImAlexis
# Need to move *.js into a separate dir than *.min.js,
# running gettext on minified js conflicts with _()
# ('**/js/**.js', 'javascript', {'input_encoding': 'utf-8'})
],
'sickrage': [('**.py', 'python', None)],
'sickbeard': [('**.py', 'python', None)],
},
)