forked from pymedusa/Medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 976 Bytes
/
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
"""
Use setup tools to install Medusa
"""
import os
from setuptools import find_packages, setup
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="medusa",
description="Automatic Video Library Manager for TV Shows",
long_description=long_description,
packages=find_packages(),
install_requires=['six', 'profilehooks', 'contextlib2', 'gi', ],
test_suite="tests",
tests_require=[
'coveralls',
'flake8_docstrings',
'flake8-import-order',
'pytest',
'pytest-cov',
'pytest-flake8',
'pytest-tornado',
'PyYAML',
'mock',
],
extras_require={
'system-stats': ['psutil'],
},
classifiers=[
'Development Status :: ???',
'Intended Audience :: Developers',
'Operating System :: POSIC :: LINUX',
'Topic :: ???',
],
)